对不起,我真的需要一些帮助来代码:
<?php
require 'PHPMailerAutoload.php';
require 'class.phpmailer.php';
$from = "xxx@gmail.com";
$mail = new PHPMailer();
$mail->SMTPDebug=2;
$mail->IsSMTP(true); // use SMTP
$mail->IsHTML(true);
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "tls";
$mail->Host = "smtp.gmail.com"; // SMTP host
$mail->Port = 587; // set the SMTP port
$mail->Username = "xxx@gmail.com"; // SMTP username
$mail->Password = "xxx"; // SMTP password
$mail->SetFrom($from , 'Admin xxx');
$mail->Subject = "mail title";
$mail->MsgHTML("Halo halo");
$address = "xxx@gmail.com";
$mail->AddAddress($address, $to);
if (!$mail->send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
我收到此错误:2018-06-08 01:52:09 SMTP错误:无法连接到服务器:网络无法访问(101)2018-06-08 01:52:09 SMTP连接()失败。
我已经尝试过关于这个问题的所有解决方案,但没有任何反应。拜托我需要你的帮忙。谢谢..