Forum Moderators: coopster
I send e-mails with the following script. It works, but approx. 1 out of 3 e-mails are not received. I checked and apparently I am not black-listed. Could there be a problem with my script (headers)?
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";
$headers .= "From: MySITE <support@mysite.net>\n";
$to = "$user_email";
$subject1 = "subject";
$message1="<FONT SIZE=-1 face=verdana><p>
<a href='http://www.mysite.net'>
Visit MySITE</p></font>";
mail($to, $subject1, $message1, $headers);
Thank you for your help!
Roberto