Can someone tell me what's wrong with this script?
Code: Select all
<?
$email = "esandrkwn@gmail.com";
$subject = "this is a test....";
$message = "If this even gets sent...";
$from = "amarie_kwn@yahoo.com";
$headers = "From: ".$from;
mail($email,$subject,$message,$headers) or
Die("Error sending mail :(");
?>