I have a very simple script to send bulk e-mails to about 1200 addresses. Everything seems to be working correctly except that I am NOT receiving the many bounced messages that I expected once I used live data. (The address list is known to have at least 100 invalid addresses.)
The relevant bit of code is as follows:
-----------------
$headers = 'From: editor@thegamesjournal.com'. "\r\n" .
'Reply-To: editor@thegamesjournal.com'. "\r\n" .
'Return-Path: editor@thegamesjournal.com'. "\r\n" .
'Return-Receipt-To: editor@thegamesjournal.com'. "\r\n" .
'X-From_: editor@thegamesjournal.com'. "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail("invalid@thegamesjournal.com", "hi", "here we are", $headers);
-----------------
I would have thought the supplied header information would be more than adequate but perhaps not? Any ideas on why I'm not receiving bounced messages? Thanks in advance.


