Hi,
I run a lottery syndicate and I mail the results to the members via a php script, some of the members use a work email address and the over-eager spam blocker on their server is blocking the emails.
The header and mail parameters I use are :
$subject="Message Subject" ;
$to = $email;
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-Type: text/html; charset=iso-8859-1\n";
$headers .= "From: Me<mail@me.com>\n";
mail($to,$subject,$msg,$headers,"-f".$to);
(note: the mail@me.com is used for demonstration purposes.)
Are there any other settings or Header values that will allow me to "convince" the spam blocker that the mails are genuine?
Thanks