55

我正在尝试将 PHPMailer 用于一个小项目,但我对这个软件的错误处理有点困惑。希望有人有这方面的经验。当我设置了电子邮件并使用:

$result = $mail->Send();

if(!$result) {
    // There was an error
    // Do some error handling things here
} else {
    echo "Email successful";
}

哪个工作正常,或多或少。问题是当出现错误时,PHPMailer 似乎也会将错误回显,所以如果出现问题,它只会将该信息直接发送到浏览器,基本上会破坏我正在尝试执行的任何错误处理。

有没有办法让这些消息静音?它没有抛出异常,它只是打印出错误,在我的测试用例中是:

invalid address: @invalid@email You must provide at least one recipient email address.

它应该是一个错误,但它应该位于 $mail->ErrorInfo; 没有被软件回显。

4

10 回答 10

122

PHPMailer 使用异常。尝试采用以下代码

require_once '../class.phpmailer.php';

$mail = new PHPMailer(true); //defaults to using php "mail()"; the true param means it will throw exceptions on errors, which we need to catch

try {
  $mail->AddReplyTo('name@yourdomain.com', 'First Last');
  $mail->AddAddress('whoto@otherdomain.com', 'John Doe');
  $mail->SetFrom('name@yourdomain.com', 'First Last');
  $mail->AddReplyTo('name@yourdomain.com', 'First Last');
  $mail->Subject = 'PHPMailer Test Subject via mail(), advanced';
  $mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically
  $mail->MsgHTML(file_get_contents('contents.html'));
  $mail->AddAttachment('images/phpmailer.gif');      // attachment
  $mail->AddAttachment('images/phpmailer_mini.gif'); // attachment
  $mail->Send();
  echo "Message Sent OK\n";
} catch (phpmailerException $e) {
  echo $e->errorMessage(); //Pretty error messages from PHPMailer
} catch (Exception $e) {
  echo $e->getMessage(); //Boring error messages from anything else!
}
于 2010-03-05T12:17:54.450 回答
34

您可以使用该方法获取有关错误的更多信息$mail->ErrorInfo。例如:

if(!$mail->send()) {
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
    echo 'Message has been sent';
}

这是您需要激活的异常模型的替代方案new PHPMailer(true)。但如果可以使用异常模型,请将其用作@Phil Rykoff 答案。

这来自 github https://github.com/PHPMailer/PHPMailer上 PHPMailer 的主页。

于 2015-07-07T15:33:58.120 回答
19

请注意!!!实例化PHPMailer时必须使用以下格式!

$mail = new PHPMailer(true);

如果您不忽略异常,您将得到的唯一结果就是例程的回声!我知道这在创建之后很好,但希望它会对某人有所帮助。

于 2013-11-21T16:16:30.850 回答
18

只好自己解决这个问题。以上答案似乎没有考虑到该 $mail->SMTPDebug = 0;选项。首次提出问题时,它可能不可用。

如果您从 PHPMail 站点获取代码,则默认为 $mail->SMTPDebug = 2; // enables SMTP debug information (for testing)

https://github.com/Synchro/PHPMailer/blob/master/examples/test_smtp_gmail_advanced.php

将值设置为 0 以抑制错误并编辑代码的“catch”部分,如上所述。

于 2013-03-29T13:53:30.737 回答
5

我们编写了一个包装类来捕获缓冲区并将打印输出转换为异常。这使我们可以升级 phpmailer 文件,而不必记住每次升级时都注释掉 echo 语句。

包装类的方法类似于:

public function AddAddress($email, $name = null) {
    ob_start();
    parent::AddAddress($email, $name);
    $error = ob_get_contents();
    ob_end_clean();
    if( !empty($error) ) {
        throw new Exception($error);
    }
}
于 2011-01-25T16:28:56.670 回答
3

即使你使用异常,它仍然会输出错误。
您必须将 $MailerDebug 设置为 False 应该如下所示

$mail = new PHPMailer();
$mail->MailerDebug = false;
于 2011-04-14T18:27:44.017 回答
2

这个工作正常

use try { as above

use Catch as above but comment out the echo lines
} catch (phpmailerException $e) { 
//echo $e->errorMessage(); //Pretty error messages from PHPMailer
} catch (Exception $e) {   
//echo $e->getMessage(); //Boring error messages from anything else!
}

然后添加这个

if ($e) {
//enter yor error message or redirect the user
} else {
//do something else 
}
于 2011-05-30T12:43:27.337 回答
1

在 PHPMailer.php 中,有如下几行:

echo $e->getMessage()

只需评论这些行,您就可以开始了。

于 2012-04-27T14:53:04.967 回答
0
$mail = new PHPMailer();

$mail->AddAddress($email); 
$mail->From     = $from;
$mail->Subject  = $subject; 
$mail->Body     = $body;

if($mail->Send()){
    echo 'Email Successfully Sent!';
}else{
    echo 'Email Sending Failed!';
}

处理电子邮件发送成功或失败的最简单方法...

于 2012-10-30T07:08:23.953 回答
0

解决 OP 问题:

“PHPMailer 似乎也将错误回显,所以如果出现问题,它只会将该信息直接发送到浏览器,基本上会破坏我正在尝试执行的任何错误处理。”

所有异常都将被馈送到输出缓冲区并不明显(无论如何,对我来说,对异常来说是新手) 。如果有人在生产中打开调试,前端用户可能会感到惊讶。我不想把它留给机会。另外,异常输出最终出现在(并破坏了)我的 JSON 响应中,因此它实际上阻碍了我的调试。

我的解决方案是在返回前端输出之前清理缓冲区。我的用例是对 fetch API 请求的 JSON 响应,因此在发送输出之前,我调用ob_clean()以清除任何不需要的调试数据的缓冲区。例如:

ob_clean(); //clean the buffer
echo json_encode( $public_output ); //echo response to browser

我应该澄清一下,这是对可能不需要的输出的后备,不应替代禁用调试。相反,我想这对于希望在浏览器中看到调试输出的开发人员来说甚至可能是个问题。

$mail->SMTPDebug = SMTP::DEBUG_OFF;

最后,即使禁用了调试,仍然可以将有用的错误输出发送到日志:

error_log( $mail->ErrorInfo );

GitHub 上的 PHPMailer 故障排除 Wiki

于 2021-10-28T16:10:38.600 回答