| Posted by "schalk" on 11/23/05 00:41 
Greetings All
 I am using the following script to send mail via PHP. The script processes and
 send the mail but the message is never displayed in the received email. Any
 pointers will be much appreciated. Thank you.
 
 <?php
 // Handle POST method.
 if ($_POST)
 {
 $name = $_POST['name'];
 $phone = $_POST['phone'];
 $comments = $_POST['comments'];
 
 $to = 'schalk@volume4.com';
 $subject = "Contact from OxfordPrice.com";
 $headers = "MIME-Version: 1.0\r\n".
 "Content-type: text/html; charset=iso-8859-1\r\n".
 "From: ".$name."\r\n".
 "Date: ".date("r")."\r\n";
 
 // Compose message:
 $message = "
 <html>
 <body>
 <h1>Message From: " . $name .
 "</h1>
 </body>
 </html>
 ";
 
 // Send message
 mail($to, $subject, $message, $headers);
 
 // Thank the generous user
 echo "<div id=\"message-response\"><h1>Thank You!</h1></div>\n";
 }
 
 --
 Open WebMail Project (http://openwebmail.org)
 [Back to original message] |