Hi, use this, much easier:
$xheaders .= "X-Mailer: PHP\n"; // mailer
$xheaders .= "X-Priority: 6\n"; // Urgent message!
$xheaders .= "Content-Type: text/html; charset=iso-8859-1\n"; // Mime type
mail("$toname",
"$subject",
"this is my html message",
$xheaders);
Enjoy!!
Jason Rottman