Forum Moderators: coopster
Lot of talk on this subject
[webmasterworld.com...]
Here's a php mail header example
[webmasterworld.com...]
this is my sendmail page...
<?
$to = "(#*$!xx)@hotmail.com";
$subject = "Question from " . $name;
$headers = "From: ".$name."<".$email.">\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";
$headers .= "Reply-To: Adam <(#*$!xx)@hotmail.com>\n";
$headers .= "X-Priority: 1\n";
$headers .= "X-MSMail-Priority: High\n";
$headers .= "X-Mailer: Q & A (#*$!xx)online.";
mail($to, $subject, $message, $headers);
?>
(#*$!xx) = Deleted Text
mail($to, $subject, $message, $headers);
?>
Still no go on hotmail...
I use a very very simple header and it gets through to both hotmail and aol.
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=utf-8\r\n";
$headers .= "From: Me Timotheos <me@example.com>\r\n";
Fun issue, no doubt. ergophobe started a thread regarding mail() and CRLF vs LF [webmasterworld.com] that never really got legs; it would be great to see it revived with some lively discussion and input from others...
...Timotheos, maybe we'll find an ace that you can keep ;-)