|
Last updated: 02/22/2012
When you send an automated email from php
, some systems do not send you the bounces. Here's how to use the php
mail() command to get bounces back:
mail ( 'to@xyz.com', 'Message Subject', "This is the message body" , "From: from@abc.com\r\nReply-To: from@abc.com\r\n",-ffrom@abc.com);
The -f flag is essential, to get bounces.
blog comments powered by
|