开发者

Catching PHP mail() errors and showing reasonable user error message

开发者 https://www.devze.com 2023-02-09 09:03 出处:网络
I\'m writing a fairly simple register php script that uses PHP\'s built in mail() function to email the user an activation link.

I'm writing a fairly simple register php script that uses PHP's built in mail() function to email the user an activation link.

The problem is that I can catch the normal errors such as email formatting but once it fires off to the server and say a user 开发者_如何学Gohas put in an email address that fails, I don't know how to catch this error and tell the user whats happened.

For example at the moment I get this:

Warning: mail() [function.mail]: SMTP server response: 554 : Recipient address rejected: Relay access denied in ** on line 70

Any ideas what I could do about errors like this? I'm aware of using the @ symbol to suppress the error but I kinda of want to do more than that and handle the issue.


Use the boolean result to detect an error:

$success = @mail(...);

Then you want to find out which internal error caused the problem, so use:

$error = error_get_last();
preg_match("/\d+/", $error["message"], $error);
switch ($error[0]) {
    case 554:
        ...
    default:
        ...

Note that this works with php 5.2 onward only.

There is no way to verify delivery or see transport error mails with PHP. You would need a pop3 polling handler for that.


A trivial error which I suffered from, was simply a lack of 'sendmail' in my system. Eventually, I have installed exim4 and configured it - and then php's mail(...) worked fine.

See also:

  • http://www.w3schools.com/php/php_ref_mail.asp (Requirements)
  • http://wiki.debian.org/GmailAndExim4


You want to catch as much as you can before you send off the mail, sanitize your inputs to make sure it really is what you expect it to be

You can use filter_var to check that the email address really is an address, check that integers falls within your allowed range, etc.

Set the mail header from address to a place where you can check for failed deliveries:

$headers = 'From: webmaster@example.com' . "\r\n";

You can also check that mail performed as expected:

if(mail($to,$subject,$message))

And a final thing, you probably don't want to display warnings in a live environment, you can turn those off, either through the ini file or using ini_set.


Best would be to use a library like Swift Mailer that throws exceptions that can be easily handled.

0

精彩评论

暂无评论...
验证码 换一张
取 消