
Archived topic from Iceteks, old topic ID:4905, old post ID:38312
Code: Select all
<?php
if( $_POST['action'] == "submit" ) {
$recipient = "youremailaddress@here.com";
[color=#888888][size=85]Archived topic from Iceteks, old topic ID:4905, old post ID:38317[/size][/color]
Code: Select all
<?php
//********************************************************
// Lets generate a email script
//********************************************************
if( $_POST['action'] == "submit" ) {
$recipient = "youremailaddress@here.com";
$subject = stripslashes( $_POST [ 'Subject_Field' ] );
$headers = "MIME-Version: 1.0
" . "Content-type: text/html; charset=iso-8859-1
";
if( $_POST['Email_Field'] != "" ) {
$headers .= "From: " . stripslashes( $_POST['Email_Field'] ) . "
" . "Reply-To: " . stripslashes( $_POST['Email_Field'] ) . "
";
} else {
$headers .= "From: NOREPLY@yourdomain.com
" . "Reply-To: NOREPLY@yourdomain.com
";
}
$headers .= "X-Mailer: PHP/" . phpversion();
$message .= stripslashes( $_POST['Content_Field'] );
mail( $recipient, $subject, $message, $headers );
}
//********************************************************
// Below is a sample html form
//********************************************************
?>
<html><tr>
<form>
<td> Please Give me your email address.</td>
<td><input maxlength="64" name="Email_Field" size="68" type="text"></td>
</tr><tr>
<td> Email Subject.</td>
<td><input maxlength="64" name="Subject_Field" size="68" type="text"></td>
</tr><tr>
<td> Please leave your comment below</td>
</tr><tr>
<td><input maxlength="555" name="Content_Field" size="75" type="textarea"></td>
</tr><tr>
<td><input name="action" type="hidden" value="submit">
<input id="submit" name="submit" type="submit" value="Submit">
</form>
</tr></html>
[code]
Hope that helps and doesn't confuse you to much.
PS. I havn't checked that code well, but I'm fairly certain it will work as is, just may not be very pretty. :banana:
[color=#888888][size=85]Archived topic from Iceteks, old topic ID:4905, old post ID:38318[/size][/color]