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 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");
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php