as you see i'm a new user off this forum. i registrated here beceause i'm breacking my brains for several weeks on a simple mail() function script.
as you see in subject my problem is the following.
i'm scripting a newsletter for a restaurant. when i send it, the mail arrives in gmail(now problem at all), yahoo in trash and hotmail don't receive him at all. hotmail receives him only when i turn the filter on low.
i did my script on several manners this is how it looks to day:
as you can see its a html mail only for sending a .gif on the top off the mail
Code: Select all
$content= $_POST[testarea];
$logo = '<img src="http://www.huizegermeaux.be/images/logoGermeaux.gif" height="46" width="490">';
$to = "$rij[mail]";
$subject = "$onderwerp";
$message = "$logo".$content."";
$headers = "From: 'Huize Germeaux'<mail@huizegermeaux.be>\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Type: text/HTML; charset=ISO-8859-1\n";
$headers .= "X-mailer: php/" . phpversion();
mail($to, $subject, $message, $headers,'-fmail@huizegermeaux.be');can somebody help me with it?
sanny