使用 PHP Mailer 通过 Gmail SMTP 服务器发送电子邮件时遇到问题:“需要 SMTP AUTH”错误
尝试通过使用 PHP Mailer 的 Gmail SMTP 服务器,您可能会遇到错误,提示在端口 587 上提交邮件需要 SMTP 身份验证。此问题可以解决通过实施以下步骤:
示例工作代码:
修改后的示例代码可以帮助您解决问题:
$mail = new PHPMailer(); // create a new object $mail->IsSMTP(); // enable SMTP $mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only $mail->SMTPAuth = true; // authentication enabled $mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for Gmail $mail->Host = "smtp.gmail.com"; $mail->Port = 465; // or 587 $mail->IsHTML(true); $mail->Username = "[email protected]"; $mail->Password = "password"; $mail->SetFrom("[email protected]"); $mail->Subject = "Test"; $mail->Body = "hello"; $mail->AddAddress("[email protected]"); if (!$mail->Send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message has been sent"; }
此代码有经过测试和验证可以工作。通过实施这些建议,您应该能够使用 PHP Mailer 通过 Gmail SMTP 服务器成功发送电子邮件。
以上是使用 PHP Mailer 通过 Gmail 的 SMTP 服务器发送电子邮件时,为什么会收到'需要 SMTP AUTH”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!