Hello. I'm unable to use the mail function in PHP without it being filtered as spam in hotmail (and probably other places). Any suggestions? My message looks something like this:
$from = "my@email.com";
$MailBody = "Blah blah blah";
$MailSubject = "Hi";
$MailHeaders = "From: ShoeyFighter <$from>\n";
$MailHeaders .= "Reply-To: <$from>\n";
$MailHeaders .= "Return-path: <$from>\n";
$MailHeaders .= "MIME-Version: 1.0\n";
$MailHeaders .= "Content-type: text/plain; charset=iso-8859-1\n";
$MailHeaders .= "X-Mailer: PHP " . phpversion() . "\n";
mail($email, $MailSubject, $MailBody, $MailHeaders);