Todd Cary wrote:
I have the following code in my script and no errors are created, but I do not get any emails. It works on other servers.

Are there some logs I can check to figure out why an email is not being sent/received?

Todd

Whoops...forgot the code:

if (mail("[EMAIL PROTECTED]", "Test email", $body, "From:[EMAIL PROTECTED]")) {
 $msg = "Email has been sent to " . $req_email;
 $req_email = "";
} else {
  $msg = "Cannot send email";
}

And I believe the problem is that the required is being used by another server.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to