使用GMail和phpMailer发送时"服务器不接受密码:535验证数据不正确"

Joh*_*ner 20 php gmail phpmailer

我在localhost上运行相同的php脚本 - 我的PC与XAMPP和托管服务器上运行.它适用于我的PC,但不适用于托管服务器.

当我从托管服务器发送它时,我得到以下输出:

SMTP -> ERROR: Password not accepted from server: 535 Incorrect authentication data  
SMTP -> ERROR: RCPT not accepted from server: 550-Please turn on SMTP Authentication in your mail client, or login to the 550-IMAP/POP3 server before sending your message. dev.camppage.com 550-(patchvalues.com) [205.234.141.238]:50958 is not permitted to relay through 550 this server without authentication.  
SMTP Error: The following recipients failed: jdorner4@gmail.com FAILED
Run Code Online (Sandbox Code Playgroud)

我怀疑有一个配置设置需要在服务器上更改,但我不知道哪一个.任何建议将不胜感激!

这是代码:

function send_gmail ($recipients, $subject, $message, $attachment_filenames = array()) 
{
  global $email_address, $email_password, $email_name;
  require_once ($_SERVER['DOCUMENT_ROOT']. '/php/PHPMailer/class.phpmailer.php');   

  $body  = $message;
  $body  = str_replace("\\", '', $body);
  $mail = new PHPMailer();
  $mail->CharSet = "UTF-8";
  $mail->IsSMTP();
  $mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
  $mail->SMTPDebug  = 1;                     // enables SMTP debug information (for testing) 0 - none; 1 - errors & messages; 2 - messages only
  $mail->SMTPAuth   = true;                  // enable SMTP authentication
  $mail->SMTPSecure = "ssl";                 // sets the prefix to the servier
  $mail->Port       = 465;                   // set the SMTP port
  $mail->Username   = $email_address;  // GMAIL username
  $mail->Password   = $email_password; // GMAIL password
  $mail->SetFrom($email_address);
  $mail->FromName   = $email_name;
  $mail->AddReplyTo($email_address,$email_name);
  $mail->Subject    = $subject;
  $mail->MsgHTML($body);
  $mail->IsHTML(true); // send as HTML

  if (isset ($recipients[0]))
  {
    foreach ($recipients AS $to)
    {
        $to_pieces = explode (",", $to, 2);
        $to_email = trim ($to_pieces[0]);
        if (isset ($to_pieces[1]))
            $to_name = trim ($to_pieces[1]);
        else
            $to_name = " ";
        $mail->AddAddress($to_email, $to_name);
    }
    $mail->IsHTML(true); // send as HTML

    if ($mail->Send()){
        return TRUE;
    } else {
        return FALSE;
    }
} 
else 
{
    return FALSE;
}
}
Run Code Online (Sandbox Code Playgroud)

TIA

Joh*_*ner 48

解决方案是从服务器设置启用传出SMTP.

在运行cPanel的WHM的服务器上,它位于WHM的"调整设置"部分下.

选项是启用/禁用 - 选择禁用.

警告:进行此更改将重定向外发SMTP连接,允许帐户建立直接连接,这可能会增加将服务器列入黑名单的几率.

  • 你是救命的人.我正在使用CentOs 6`登录CPanel>调整设置>全部>"将外发SMTP限制为root,exim和mailman(FKA SMTP Tweak)"`<==禁用它.我为任何遇到同样问题的人描述了更多细节 (9认同)
  • 伙计,你是一个救生员,当你带着英雄服从哪里冒出来救我的时候,我就在沮丧的行刑队面前。谢谢 (3认同)

Nas*_*sim 8

这与WHM/cPanel相关,您可以通过键入以下内容来执行与上一个答案或从 shell 中相同的操作

/scripts/smtpmailgidonly off
Run Code Online (Sandbox Code Playgroud)

你应该得到

"SMTP Mail protection has been disabled.  All users may make outbound smtp connections."
Run Code Online (Sandbox Code Playgroud)

更多阅读在这里https://forums.cpanel.net/threads/cant-enable-smtp-restrictions.360971/