Fw: [PHP] Email always set to server's email, why?

2003-03-17 Thread Kevin Stone
- Original Message - From: "Vernon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 17, 2003 12:09 PM Subject: [PHP] Email always set to server's email, why? > All the email coming from a web site, even though I have set the Reply-To, >

Re: [PHP] Email always set to server's email, why?

2003-03-17 Thread John Nichel
Try it this way. mail ( "$clubemail", "$subject", "$message", "From: $email\r\n" . "Reply-To: $email\r\n" ); Notice the period (.) between the from and reply-to section, instead of the comma, and the added newline (\r\n) after the reply-to address. Vernon wrote: All the email coming from a

[PHP] Email always set to server's email, why?

2003-03-17 Thread Vernon
All the email coming from a web site, even though I have set the Reply-To, have the Reply-To set to [EMAIL PROTECTED] Anyone have any ideas why? I want the reply-to set to somethign else. Here is what I have: mail("$clubemail", "$subject", "$message" , "From: $email\r\n","Reply-To: $email"); -