mail() recipient won't receive the email
Posted: Sun Aug 30, 2009 11:53 pm
Hi this script doesn't return any errors but it also doesn't send the message. What seems to be the problem with this?
-----------------------------------------------------------------
-----------------------------------------------------------------
Any help is very much appreciated.
-----------------------------------------------------------------
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)
?>
Any help is very much appreciated.