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

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

RE: [PHP] Sending html email

2001-03-23 Thread PHPBeginner.com
here: charset to be is text/html $mess .= 'your HTML code'; $mess .= 'as you like'; here is going mail() see php.net/mail for how to add the headers Sincerely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -O

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