我对PHPMailer有个问题。首先,我已经集成了phpmailer和电子邮件发送,没有任何问题,在本地主机和实时服务器。从昨天起,我有一个问题要发送电子邮件在本地主机,而不是在现场服务器。当我在本地寄出电子邮件时,我收到的错误是
无法将电子邮件发送给最近批准的成员。ErrorSMTP连接()失败。https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
这是相同的代码发送电子邮件,无论是在现场服务器和本地主机。
$mail = new PHPMailer;
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.gmail.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'someone@gmail.com'; // SMTP username
$mail->Password = $pw; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 25; // TCP port to connect to
$mail->setFrom('someone@gmail.com', 'Reboot E-Magazine');
$mail->addAddress($email); // Add a recipient
$mail->Subject = 'Article Confirmation';
$mail->Body =
'Reboot Magazine
--------------------------------------------------------------------
Your article was not been approved due to certain reasons.
Please ensure the article are well-written and relevant to the topic.
--------------------------------------------------------------------
Sincerely,
Riyaz Ahmad
Admin of Reboot E-magazine';
if(!$mail->send())
{
$error = "Email could not be sent. Error". $mail->ErrorInfo;
}
else
{
$msg = "Email has been sent to notify the member";
}
发布于 2018-12-09 02:01:22
我相信这个问题已经得到了回答:
SMTP Connect() failed. Message was not sent.Mailer error: SMTP Connect() failed
评语
$mail->isSMTP();
通常解决这个问题。
https://stackoverflow.com/questions/53691124
复制相似问题