View Single Post
  #7 (permalink)  
Old Nov 16th, 2005, 22:29
made on earth made on earth is offline
New Member
Join Date: Nov 2005
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: visitors name not displayed in mail after filling in mail form

Found and tested this one, and it works! Just paste this behind the rest of your php-code

PHP: Select all

// Reply
// ---------------------------


$subject "Bedankt voor uw bestelling.";


$headers "From: MyName<madeonearth@telenet.be>\n";
$headers .= "X-Sender: <madeonearth@telenet.be>\n";
$headers .= "X-Mailer: PHP\n"// mailer
$headers .= "X-Priority: 1\n"// Urgent message!
$headers .= "Return-Path: MyName<madeonearth@telenet.be>\n";  // Return path for errors


$recipient $email;


$message "Thank you for contacting me. I have received your e-mail and will reply as soon as possible.";

mail($recipient$subject$message$headers);
?>

?> 
Reply With Quote