You can use mail() to send html, but you need to set the headers first.
I hope this helps.

Jeremy Schreckhise

 $email_addr = "[EMAIL PROTECTED]";
 $email_from = "[EMAIL PROTECTED]";

 $email_subj = "About What";

 // Set Content-type header
         
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
         
$email_mess = "<html><head></head><body>Stuff</body></html>";
         
ini_set('sendmail_from',$email_from);
mail($email_addr,$email_subj,$email_mess,$headers);


-----Original Message-----
From: Tomás Rodriguez Orta [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 28, 2005 2:31 PM
To: php-general@lists.php.net
Subject: [PHP] How Can I send mail in php in HTML format?

Hello friends.

How Can I send mail from php in HTML format?.
I use the mail() function, but I dont know doing.somebody can I help me?


Best regards TOMAS


------------------------------------------------------------------------
-
Este correo fue escaneado en busca de virus con el MDaemon Antivirus
2.27
en el dominio de correo angerona.cult.cu  y no se encontro ninguna
coincidencia.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to