用phpmailer发送gsuite邮件

时间:2018-08-31 06:02:53

标签: phpmailer gsuite

enter image description here

我用phpmailer和gsuite设置了我的网站注册表格。电子邮件运行正常。但是注册后我在注册页面的顶部收到了此通知。我该怎么办?

1 个答案:

答案 0 :(得分:0)

您似乎已启用SMTP调试。在下面检查您的配置。

$mail->SMTPDebug = SMTP::DEBUG_SERVER;
$mail->SMTPDebug = 2; //Alternative to above constant

PHPMailerSMTP Debugging