I am sending mails from my site by PHP code ( mail($em, $sub, $temp,
$headers); )
and wants to capture bouncers in one email address.( My intention is to
remove those bounced address ). I have set the from address like this
$from="From:bouncer@mysite.net\n;
$headers = $from."Content-Type: text/html; charset=iso-8859-1\n";
It is sending mails with from address bouncer@mysite.net address but
bouncers are not returning to this address.
Is there any better way of doing this