RE: [PHP] sending html email from a web-based form

2002-11-17 Thread rw
Well now, that was easy! Thank you! Quoting "John W. Holmes" <[EMAIL PROTECTED]>: ### > Here is the code that is supposed to do what I want: ### > ### > $headers = "From: \"$name $last\" <$email>\n" . "Reply-To: ### <$email>\n\n"; ### ### Try taking out the extra newline (\n) you have in the a

RE: [PHP] sending html email from a web-based form

2002-11-17 Thread John W. Holmes
> Here is the code that is supposed to do what I want: > > $headers = "From: \"$name $last\" <$email>\n" . "Reply-To: <$email>\n\n"; Try taking out the extra newline (\n) you have in the above line. Actually, the headers are supposed to be separated by \r\n, instead of just \n, also. ---John Hol