【发布时间】:2013-10-29 04:25:38
【问题描述】:
这是我的代码,但它仍然没有发送邮件。可能是什么问题?
require 'class.phpmailer.php';// path to the PHPMailer class
require 'class.smtp.php';
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Mailer = "smtp";
$mail->Host="smtp.gmail.com";
$mail->SMTPSecure='tls';
$mail->Port =465;
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "mymailgmail.com"; // SMTP username
$mail->Password = "mypassword"; // SMTP password
$mail->SMTPDebug = 1;
$mail->AddAddress("mymail@gmail.com","Title");
$mail->SetFrom($visitor_email, $name);
$mail->AddReplyTo($visitor_email,$name);
$mail->Subject = "Message from Contact form";
$mail->Body = $user_message;
$mail->WordWrap = 50;
if(!$mail->Send()) {
echo 'Message was not sent.';
echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent.';
}
// header('位置:thank-you.html'); }
【问题讨论】:
-
在此处查看已接受的答案,它可能会有所帮助stackoverflow.com/questions/16048347/…
-
还是什么都没有。托管我的文件的位置有问题吗?
-
我会开始寻找方向,找出为什么错误消息说它正在尝试连接到端口 110,而您尝试将 PHPMailer 配置为使用端口 465。
-
this answer 帮助了我。我使用了 587 端口,而 465 对我不起作用。