i just tried something with mail sending i it works....i dont know jast your problem, but here's an example of what i did:
<?
$message = "You're going down! <a href='http://www.linux.org'>BiLl</a>";
$to = "bill@microsoft.com";
$subject = "Down";
$replytoname = "down@down.com";
$fromname = "down@down.com";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $fromname <$fromname>\r\n";
$headers .= "To: $to\r\n";
$headers .= "Reply-To: $replytoname <$replytoname>\r\n";
mail($to, $subject, $message, $headers);
?>
this works on my pc....i hope it works 4 u