新的PHPMailer没有运行?

时间:2018-05-22 19:52:55

标签: php phpmailer

下面是我正在使用的phpmailer代码:

    use PHPMailer\PHPMailer\PHPMailer;
    use PHPMailer\PHPMailer\Exception;
    require '../vendor/autoload.php'; 
    $mail = new PHPMailer(true);  
    try { 
     $mail->SMTPDebug = 2; 
     $mail->isSMTP();
     $mail->Host = as given in the configure mail client window; 
     $mail->SMTPAuth = true; 
     $mail->Username =as given in the configure mail client window; 
     $mail->Password = as given in the configure mail client window;  
     $mail->SMTPSecure = 'tls' ;
     $mail->Port = 465; 
     $mail->setFrom('my email', 'my name'); 
     $mail->addAddress('email', 'name');
     $mail->isHTML(true);
     $mail->Subject = 'Here is the subject';
     $mail->Body = 'This is the HTML message body <b>in bold!</b>'; 
     $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
     $mail->send(); 
    echo 'Message has been sent';
     } 

    catch (Exception $e) { 
    echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
     }

页面不断加载,电子邮件没有发送,发生了什么?我应该如何配置它。我正在使用godaddy cpanel。

1 个答案:

答案 0 :(得分:0)

您正在使用SMTP到localhost(就您的脚本而言,这是推荐的,通常是最快的发送机制),但您已启用加密和身份验证,因此您的本地邮件服务器需要提供localhost的有效证书,这是不会发生的。发送到localhost时通常不需要使用加密或身份验证,因为您可以将localhost列入白名单,这样可以使其更快。

如果设置SMTPDebug = 2,则可以查看SMTP会话中的时间戳,并查看哪个部分需要很长时间。

除非你快速连续发送大量信息,否则Keepalive无济于事。

查看本地邮件服务器的日志并查看其中是否有任何有趣内容也可能有所帮助。

您还使用了非常旧版本的PHPMailer; get the latest,并将您的代码基于提供的示例。

每秒提交几百封邮件应该没有问题。

如果问题在于提交速度很快,但最终交付速度很慢,则需要查看本地邮件服务器日志,了解其原因。您可能正在获得递送延期。