Posted by Todd Cary on 11/14/23 11:23
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("todd@aristesoftware.com", "Test email", $body,
"From:webmaster@aristesoftware.com")) {
$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.
[Back to original message]
|