我有这个PHPMailer:https://github.com/PHPMailer/PHPMailer/
我的代码是:
$mail = new PHPMailer;
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'kms-play.it'; // Specify main and backup server
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'noreply@kms-play.it'; // SMTP username
$mail->Password = 'pass'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted
$mail->From = 'noreply@kms-play.it';
$mail->FromName = 'KMS-Play';
$mail->addAddress('evolutio@kms-play.it', 'Lars Mehrhoff'); // Add a recipient
#$mail->WordWrap = 50; // Set word wrap to 50 characters
#$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
#$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
#$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if(!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
exit;
}
echo 'Message has been sent';
,错误是:
2013-12-15 15:02:23客户 - &gt;服务器:EHLO local.kms-play.it 2013-12-15 15:02:23客户 - &gt;服务器:STARTTLS 2013-12-15 15:02:23 SMTP错误:STARTTLS命令失败:502 5.5.1错误:命令未实现2013-12-15 15:02:23客户端 - &gt; SERVER:QUIT SMTP connect()失败。无法发送消息.Mailer错误:SMTP connect()失败。
答案 0 :(得分:1)
您有两个选择:
1 - 由于TLS
未激活,请注释以下行:
$mail->SMTPSecure = 'tls';
如果没有签名就发送邮件会有效但不好。
2 - 确保激活TLS
并返回EHLO
命令:
EHLO myfriend
2016-10-27 01:15:07 SERVER -> CLIENT: 250-server.urutecno.net
Hello mail.myfriemd.com [216.111.111.111]
250-SIZE 52428800
250-8BITMIME
250-PIPELINING
250-AUTH PLAIN LOGIN
250-STARTTLS
250 HELP
答案 1 :(得分:0)
只是配置问题。
更新&LT;人类 - &gt;转到网站:: https://github.com/PHPMailer/PHPMailer/releases 得到 - &gt; PHPMailer-5.2-stable并浏览examples \ mailing_list.phps
将以下配置文件添加到文件中,它将开箱即用。
$mail->SMTPOptions = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)
);
$mail->isSMTP();
$mail->SMTPAutoTLS = false;
$mail->Port = 587;
$mail->SMTPAuth = true;
$mail->SMTPSecure = 'tls';
肯定会起作用
答案 2 :(得分:-3)
我想这可能是错的:
$mail->Host = 'kms-play.it';
这真的是你的SMTP主机吗?通常它就像smtp.kms-play.it。最好咨询您的托管服务提供商。