Re: [PHP] Send mail in HTML FORMAT

2002-11-03 Thread Jennifer Swofford
You also need to add the text/html header, such as: $headers = "Content-Type: text/html \r\n"; mail("[EMAIL PROTECTED]", "subject",$out , "From: website", $headers); jen > I read from a template, insert data and save it as a new file with html > code... > i want to send that file that is the sa

[PHP] Send mail in HTML FORMAT

2002-11-03 Thread Kevin Fradkin
I read from a template, insert data and save it as a new file with html code... i want to send that file that is the same as $out via mail embedded in it... i do $fifi = fopen ('/'.$cursada.$cuatrimestre.'/'.$registronro.'.htm', "w"); $fp = $fifi; fputs ($fifi, $out . ""); fclose ($fifi); mail("[

RE: [PHP] send mail in HTML format in Mail Function

2001-04-01 Thread Tyler Longren
nt-Type: text/html; charset=iso-8859-1\n"; $message = "This is HTML!!!See!!!"; $subject = "TEST"; mail($recipient, $subject, $message, $headers); -Original Message- From: Mark Lo (3) [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 01, 2001 9:37 PM To: PHP Mailing Li

[PHP] send mail in HTML format in Mail Function

2001-04-01 Thread Mark Lo \(3\)
Hi, I would like to know how to send a mail in HTML format in Mail Functions. Thank you Mark -- 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 P