Re: [PHP] sending HTML email

2009-10-05 Thread Ashley Sheridan
On Mon, 2009-10-05 at 10:27 -0400, John Corry wrote: > I've inherited a PHP application, first task of which was relocating to a > new server. > We've installed and configured all of the files on a dedicated linux server > at 1 and 1 (using qmail as an MTA). > > Since the move, the client is comp

[PHP] sending HTML email

2009-10-05 Thread John Corry
I've inherited a PHP application, first task of which was relocating to a new server. We've installed and configured all of the files on a dedicated linux server at 1 and 1 (using qmail as an MTA). Since the move, the client is complaining that *some* of the recipients of the HTML email that the s

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

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

2002-11-17 Thread rw
Here is the code that is supposed to do what I want: $headers = "From: \"$name $last\" <$email>\n" . "Reply-To: <$email>\n\n"; $headers .= "Content-Type: text/html; charset=iso-8859-1"; mail($to, $subject, $msg, $headers) or die ("Mail not sent.!"); Instead, I get all of the raw code in the emai

RE: [PHP] Sending html email

2001-03-23 Thread PHPBeginner.com
www.phpbeginner.com -Original Message- From: Floyd Piedad [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 6:12 PM Cc: [EMAIL PROTECTED] Subject: [PHP] Sending html email Can anybody tell me the easiest and quickest way to send email in HTML format? Thanks, Floyd -- PHP Genera

Re: [PHP] Sending html email

2001-03-23 Thread Brad Hubbard
> Can anybody tell me the easiest and quickest way to send email in HTML > format? http://www.php.net/manual/en/function.mail.php Read it. Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

[PHP] Sending html email

2001-03-23 Thread Floyd Piedad
Can anybody tell me the easiest and quickest way to send email in HTML format? Thanks, Floyd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTEC