Re: [PHP] mail() and Return-Path header

2006-02-06 Thread Marcus Bointon
On 2 Feb 2006, at 13:00, Søren Schimkat wrote: I'm using the mail function for sending mail, and I would like to specify the Return-Path header, but it would seem that PHP or Apache is modyfying the header. Strictly speaking, you should not set a return-path header at all. You should

[PHP] mail() and Return-Path header

2006-02-02 Thread Søren Schimkat
Hi Guys I'm using the mail function for sending mail, and I would like to specify the Return-Path header, but it would seem that PHP or Apache is modyfying the header. This is the simple code: mail('[EMAIL PROTECTED]', 'Subject', 'Message', From: [EMAIL PROTECTED]: [EMAIL PROTECTED]); .. but

Re: [PHP] mail() and Return-Path header

2006-02-02 Thread Richard Heyes
Søren Schimkat wrote: Hi Guys I'm using the mail function for sending mail, and I would like to specify the Return-Path header, but it would seem that PHP or Apache is modyfying the header. This is the simple code: mail('[EMAIL PROTECTED]', 'Subject', 'Message', From: [EMAIL PROTECTED]:

[PHP] Re: Solution [PHP] mail() and Return-Path header

2006-02-02 Thread Peppy
Thanks Richard. That worked great. - Original Message - From: Richard Heyes [EMAIL PROTECTED] To: Søren Schimkat [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Thursday, February 02, 2006 8:02 AM Subject: Re: [PHP] mail() and Return-Path header Søren Schimkat wrote: Hi Guys