[PHP] capturing bouncers.

2002-06-10 Thread Subhendu Mohapatra
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:[EMAIL PROTECTED]\n; $headers = $from.Content-Type:

Re: [PHP] capturing bouncers

2002-06-10 Thread Analysis Solutions
Hi Subhendu: On Mon, Jun 10, 2002 at 10:38:10PM +0530, Subhendu Mohapatra wrote: $from=From:[EMAIL PROTECTED]\n; $headers = $from.Content-Type: text/html; charset=iso-8859-1\n; That should have a space in there. Also, it's best to have an \r too. From: [EMAIL PROTECTED]\r\n; --Dan --