我的phpmailer smtp无效。 php页面应连接到经过身份验证的smtp服务器(使用用户名和密码),然后使用用户名和密码对我选择的特定邮箱进行身份验证。
基本上我有一个两步验证:一个到服务器,一个到邮箱。
感谢谁能帮助我。
// SMTP auth
$mail->IsSMTP();
$mail->SMTPAuth = ($smtp['auth'] ? true : false);
$mail->SMTPSecure = ($smtp['secure'] ? $smtp['secure'] : false);
$mail->Host = $smtp['host'];
$mail->Port = $smtp['port'];
$mail->Username = $smtp['username'];
$mail->Password = $smtp['password'];