gsuite 邮件与 phpmailer

gsuite mail with phpmailer

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

您似乎启用了 SMTP 调试。检查您的以下配置。

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

PHPMailerSMTP Debugging