just for giggles, try this script out, i have given it to many others on this board, and it seems to work for them and myself, btw i couldn't pull up that link
<?
if (isset($send))
{
$to = "Whom Ever <whomever@wherever.com>";
$subject = "Contact Form";
$message = "
<html>
<head>
<title></title>
</head>
<body>
Email address you entered: <font color=red>$email</font>
</body>
</html>
";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: You <you@you.com>\r\n";
$headers .= "Cc: [email]notyou@you.com[/email]\r\n";
mail($to, $subject, $message, $headers);
?>
<br><br><center><font size=3><b>Thank You, You're information has been submitted</b></font></center>
<?
}
else
{
?>
<form>
<input type="text" name="email"><br>
<input type="submit" name="send">
</form>
<?
}
?>