Jump to content

Help with PHP send() - Not reaching Hotmail


infusionstudios

Recommended Posts

I've been sending newsletters off my server's send() mail command in php for some time (years). All but recently, we've been running into some huge problems with Hotmail.com accounts receiving our emails.

 

1) It's not with the newsletters we send. I dummied the php script down to this:

<?

$to      = [email protected]';

$subject = 'the subject';

$message = 'hello';

$headers = 'From: [email protected]' . "\r\n" .

'Reply-To: [email protected]' . "\r\n" .

'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);

?>

And it still does not work.

2) It's not getting put in junk email folders on Hotmail

3) I am not getting any type of bounce back or error messages

 

However, if I send a email using outlook from [email protected], it does reach Hotmail (just goes into junk email folder).

 

I created the SPF records, made sure my DNS was correct - what seems to be the problem?

Link to comment
https://forums.phpfreaks.com/topic/80925-help-with-php-send-not-reaching-hotmail/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.