dongmen5867 2015-12-18 18:16
浏览 371
已采纳

使用swiftmailer发送多封电子邮件时如何绕过失败的电子邮件?

I've got an email queue in a MySQL database, and via cron I process X unsent emails per minute. The problem I have is that if any specific email fails, it stops execution of the rest of the emails. In one case it was because of an SMTP authentication failure, and email processing basically came to a halt because the attempt to send the failing email kept happening. Are there other ways swiftmailer can fail that I should know about?

I'm wondering what I can do here to make this loop bulletproof? If any single email fails, I'd like to mark the record in the database with an error code (mine or swiftmailers).

Swiftmailer isn't the only way we send email, and the following method is part of a driver. What are some solutions?

public function process_queue()
{
    $result = [... a few mail queue records ...];

    foreach( $result as $params )
    {
        if( ! class_exists( 'Swift', FALSE ) )
        {
            require '/libraries/Mail/swiftmailer/lib/swift_required.php';
        }

        // Prepare transport for sending mail through SMTP
        if( $params['protocol'] == 'smtp' )
        {
            $transport = Swift_SmtpTransport::newInstance( $params['smtp_host'], $params['smtp_port'] )
                ->setUsername( $params['smtp_user'] )
                ->setPassword( $params['smtp_pass'] );
        }

        // Prepare transport for simple mail sending
        else
        {
            $transport = Swift_MailTransport::newInstance();
        }

        // Prepare swiftmailer mailer object
        $mailer = Swift_Mailer::newInstance( $transport );

        // Get a new message instance, and apply its attributes
        $message = Swift_Message::newInstance()
            ->setSubject( $params['subject'] )
            ->setFrom( [ $params['from_email'] => $params['from_name'] ] )
            ->setTo( $params['to'] )
            ->setBody( $params['body'], $params['mailtype'] );

        $mailer->send( $message );
    }
}
  • 写回答

1条回答 默认 最新

  • douci1196 2015-12-18 18:38
    关注

    You could put the send in a try-catch block and handle any exceptions after completion of the loop.

    try {
        $mailer->send($message);
    } catch(Exception $exception) {
        // do something with $exception that contains the error message
    }
    

    Or you can add the second parameter to send and make use of the failures.

    // Pass a variable name to the send() method
    if (!$mailer->send($message, $failures))
    {
      // do something with $failures that contains the error message
    }
    

    Also, Swift will return an error if setTo fails because of an invalid email address, so instead of chaining to build the message you could do each method separately and catch/handle any errors.

    try {
        $message->setTo($params['to']);
    } catch(Swift_RfcComplianceException $e) {
        echo "The email ".$params['to']." seems invalid";
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 .xla后缀的文件拖到excel里什么内容也没有怎么办
  • ¥20 Workbench中Mechanical打不开、闪退是什么原因?
  • ¥240 MapReduce应用实践 学生课程
  • ¥15 hlss视频显示AUTHORITY_INVALID
  • ¥15 MAX9296A+MAX96717,美信gmsl解串有人做过吗?
  • ¥15 求帮我解决一下inode 爆满的问题(有偿)
  • ¥15 关于#vscode#的问题:布料滤波算法中C++实现pcl在Vscode中pcl库没有#include <pcl>
  • ¥15 fpga:ov5640采集tft显示
  • ¥100 python怎么连接wxSQLite3加密的数据库
  • ¥20 创建taro项目,在vscode上能够写跨平台写微信小程序代码