新的PHPMailer没有运行

时间:2018-05-24 20:19:30

标签: 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; 
}

error_log文件说:

PHP Warning: stream_select(): unable to select [4]: Interrupted system call (max_fd=5) in /root/vendor/phpmailer/phpmailer/src/SMTP.php on line 1124

我尝试过很多例子,有时会说connect() failed,有时会couldn't connect to host 页面继续加载,电子邮件没有发送,发生了什么?我应该如何配置它。我正在使用godaddy cpanel php 7.。

1 个答案:

答案 0 :(得分:2)

重要的是:

  

我正在使用godaddy

GoDaddy阻止出站SMTP;您必须使用他们的服务器(*.secureserver.net)。

您还将SMTPSecure = 'tls'Port = 465一起使用,但这不起作用。更改为SMTPSecure = 'ssl'