提问人:Kevin 提问时间:8/9/2023 更新时间:8/9/2023 访问量:93
已移至 GoDaddy,PHP Mailer 出现 SMTP 错误
Served moved to GoDaddy and PHP Mailer is giving an SMTP error
问:
我们的 Media Temple 服务器已购买并迁移到 GoDaddy,现在我的 PHP 邮件无法正常工作。不确定需要更新什么 - 环顾四周,只找到了几年前的线程。
错误是:
SMTP 错误:无法连接到 SMTP 主机。邮件错误 ([电子邮件保护])SMTP 错误:无法连接到 SMTP 主机。SMTP的 服务器错误:在未连接的情况下调用了 RSET
代码是:
$mail->SMTPDebug = SMTP::DEBUG_SERVER;
$mail->SMTPDebug = 4;
$mail->isSMTP();
$mail->Host = 'domain.com.';
//$mail->Host = 'localhost';
$mail->SMTPAuth = true;
$mail->SMTPKeepAlive = true; //SMTP connection will not close after each email sent, reduces SMTP overhead
$mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS;
$mail->Port = 465;
$mail->Username = '[email protected]';
$mail->Password = 'password';
$mail->setFrom('[email protected]', '[email protected]');
$mail->addReplyTo('[email protected]', '[email protected]');
答: 暂无答案
评论