gpt4 book ai didi

php - 使用 phpmailer 从 Gmail 发送电子邮件。登录错误

转载 作者:行者123 更新时间:2023-12-05 08:57:50 25 4
gpt4 key购买 nike

我似乎无法理解为什么我不能使用 php 中的各种邮件类发送电子邮件。我知道我的密码等是正确的。

有人有什么想法吗?

我得到错误:

SMTP -> ERROR: Password not accepted from server: 534-5.7.14 Please log in via your web browser and 534-5.7.14 then try again. 534-5.7.14 Learn more at 534 5.7.14 https://support.google.com/mail/bin/answer.py?answer=78754 dm6sm8657044wib.22 - gsmtp SMTP Error: Could not authenticate. Mailer Error: SMTP Error: Could not authenticate.

function mail1($to,$body,$subject){

include "/libs/mailer/classes/class.phpmailer.php"; // include the class name
$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 = "lewis.morris@gmail.com";
$mail->Password = "xxxxxxxx";
$mail->SetFrom("lewis.morris@gmail.com");
$mail->Subject = $subject;
$mail->Body = $body;
$mail->AddAddress($to);

if(!$mail->Send()){
echo "Mailer Error: " . $mail->ErrorInfo;
}
else{
echo "Message has been sent";
}

}

最佳答案

此链接总是帮助我解决从我的应用程序到 gmail 的任何类型的登录问题。试试这个也许它可以帮助你...

在这里,为安全性较低的应用程序启用日志记录:https://www.google.com/settings/u/1/security/lesssecureapps

在这里,只需单击继续... https://accounts.google.com/b/0/DisplayUnlockCaptcha

并检查这里是否有任何登录到您的帐户:https://security.google.com/settings/security/activity?hl=en&pli=1

然后,运行您的代码..

关于php - 使用 phpmailer 从 Gmail 发送电子邮件。登录错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28864808/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com