Is it possible with the mail() php function to create an "html format" mail that is to create and send an html page.
thanks for your help
JPA
Yes this is possible:
<? $message = "
<body bgcolor=blue> Blablabla </body> ";
mail("recipient@domain.com","Subject",$message); ?>
I am sorry but it doesn't function on my website. It send an email with "<body etc" written ijside...because i receive a email in format "brut" and not in html format...