|
Posted by Jerry Stuckle on 09/16/07 17:50
RageARC wrote:
> I've made a script that sends mails, and it sends mails correctly for
> gMail, but not for Hotmail. What happens is that on Hotmail the mails
> are not even received! Nor on spam box, nor on inbox.
>
> $headers = "From: $from\r\n";
> $headers .= "Content-type: text/html\r\n";
>
> mail($to, $subject, $message, $headers);
>
> This is the important info on the mail. The subject is a string, the
> $to and the $from are emails and the $message is HTML.
> ?>
>
To start with, get a copy of an email which was received Ok by HotMail,
and one of yours which was rejected.
Start by comparing the headers. Most of the time that will show a problem.
Other possibilities include your server being on a spam blacklist, etc.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|