just add this extra header to your script
$Mail_header = "Content-type: text/html\n";
<?
$Mail_header = "Content-type: text/html\n";
$Mail_header .="From:$yourName<$yourEmail>\n";
mail($recipientEmail,$subject,$body,$Mail_header);
?>
and u'll get an html formatted mail
thanx