Allez, je te donne un ptit coup de main :
si tu souhaites envoyer des mails au format html, suis ce code :
a - ton mail doit avoir un header du type :
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";
$headers .= "From: $from\n";
$headers .= "Reply-To: $replyto\n";
b- le corps du mail peut maintenant contenir du HTML : exemple
$body ="<HTML><HEAD><TITLE>Nouveau Mail</TITLE></HEAD>";
$body .="<BODY bgColor=#FFFFFF>";
$body .="<FONT face=\"Verdana, Arial, Helvetica, sans-serif\" size=2 color=#000000>";
$body .="ReplyTo : <a href=\"mailto:$from\">$from</a><br>";
$body .="From : <a href=\"mailto:$from\">$from</a><br><br><br>";
$body .= nl2br($message);
$body .="</FONT></BODY></HTML>";
c - écriture de la fonction MAIL :
mail($to,$subject,$body,$headers)
Voilà, normalement ça marche !!!
@plus.
[edtdd]--Message édité par fly LM--[/edtdd]