HI,
I have never had this problem before.... But I just cant figure this out...
I don't get any error messages... But the email dose not send...
I did do a bit of error testing and the PHP script comes back saying that it was ok... (the print statement at the bottom of the script is the error checking... It prints out 1 (or TRUE) meaning the function went ok...)
$your_email = $_REQUEST["your_email"];
$there_email = $_REQUEST["there_email"];
$message = $_REQUEST["message"];
$your_name = $_REQUEST["your_name"];
$test = NULL;
$test = mail($there_email, "Hey! It's". $your_name! . " Check This Out!", $message,
"From: $your_email");
print ($test);
That is my code... Please help me I just cant find out way it is not sending...
Thanks,
Andrew