使用 php 邮件程序通过 Gmail 发送 - SMTP 错误
Use php mailer to send via Gmail - SMTP error
我刚刚通过 gsuite/gmail 注册了一个域,将其用作我的 php 邮件程序的新邮件服务器域。
现在我通读了大部分相关主题并调整了提示,但我仍然收到错误消息:
Message could not be sent.
Mailer Error: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
这是我的代码:
$mail->Subject = "Tutor found for help";
//From email address and name
$mail->setFrom('frank@xxx.net', 'xxx.net');
$mail->addAddress("$clientmail", "$clientname");
//$mail->addAddress("nachhilfeanfrage@xxx.net", "xxx.net");
$mail->addReplyTo('frank@xxx.net', 'xxx.net');
$mail->IsSMTP(); // enable SMTP
$mail->SMTPDebug = 2; // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true; // authentication enabled
$mail->SMTPSecure = 'tls'; // secure transfer enabled required for GMail
$mail->SMTPAutoTLS = false;
$mail->Host = 'smtp.gmail.com';
$mail->Port = 587; // Port for TLS Gmail
$mail->Username = 'xx'; // SMTP username
$mail->Password = 'xx';
$mail->isHTML(true);
$mail->CharSet = 'UTF-8';
这可能与 Unable to send email using Gmail SMTP server through PHPMailer, getting error: SMTP AUTH is required for message submission on port 587. How to fix?
重复
可能是您不允许在 Gmail 帐户安全仪表板中使用安全性较低的应用程序。
在使用 Gmail 的 SMTP 服务器发送电子邮件之前,您需要在 Google 帐户安全设置下进行一些安全和权限级别设置。
确保禁用两步验证。
打开“安全性较低的应用程序”访问或单击 https://myaccount.google.com/u/0/lesssecureapps。
如果启用两步验证,则您必须为您的应用程序或设备创建应用程序密码。
出于安全考虑,Google 可能会要求您在登录时完成此附加步骤。单击此处允许使用新的 device/app.
访问您的 Google 帐户
注意:可能需要一个小时或更长时间才能反映出任何安全更改
我刚刚通过 gsuite/gmail 注册了一个域,将其用作我的 php 邮件程序的新邮件服务器域。
现在我通读了大部分相关主题并调整了提示,但我仍然收到错误消息:
Message could not be sent.
Mailer Error: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
这是我的代码:
$mail->Subject = "Tutor found for help";
//From email address and name
$mail->setFrom('frank@xxx.net', 'xxx.net');
$mail->addAddress("$clientmail", "$clientname");
//$mail->addAddress("nachhilfeanfrage@xxx.net", "xxx.net");
$mail->addReplyTo('frank@xxx.net', 'xxx.net');
$mail->IsSMTP(); // enable SMTP
$mail->SMTPDebug = 2; // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true; // authentication enabled
$mail->SMTPSecure = 'tls'; // secure transfer enabled required for GMail
$mail->SMTPAutoTLS = false;
$mail->Host = 'smtp.gmail.com';
$mail->Port = 587; // Port for TLS Gmail
$mail->Username = 'xx'; // SMTP username
$mail->Password = 'xx';
$mail->isHTML(true);
$mail->CharSet = 'UTF-8';
这可能与 Unable to send email using Gmail SMTP server through PHPMailer, getting error: SMTP AUTH is required for message submission on port 587. How to fix?
重复可能是您不允许在 Gmail 帐户安全仪表板中使用安全性较低的应用程序。
在使用 Gmail 的 SMTP 服务器发送电子邮件之前,您需要在 Google 帐户安全设置下进行一些安全和权限级别设置。
确保禁用两步验证。
打开“安全性较低的应用程序”访问或单击 https://myaccount.google.com/u/0/lesssecureapps。
如果启用两步验证,则您必须为您的应用程序或设备创建应用程序密码。
出于安全考虑,Google 可能会要求您在登录时完成此附加步骤。单击此处允许使用新的 device/app.
访问您的 Google 帐户注意:可能需要一个小时或更长时间才能反映出任何安全更改