0

因此,我将所有文件放入并更改了 SMTP 信息,但由于某种原因,我无法使其正常工作。这是PHP的样子..

<?php
require 'phpmailer/class.phpmailer.php';

$mail = new PHPMailer;

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp.mail.yahoo.com';  // Specify main and backup server
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'MYEMAILADDRESS';                            // SMTP username
$mail->Password = 'MYEMAILPASSWORD';                           // SMTP password
$mail->SMTPSecure = 'tls';                            // Enable encryption, 'ssl' also accepted

$mail->From = 'from@example.com';
$mail->FromName = 'Mailer';
$mail->addAddress('josh@example.net', 'Josh Adams');  // Add a recipient
$mail->addAddress('ellen@example.com');               // Name is optional
$mail->addReplyTo('info@example.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');

$mail->WordWrap = 50;                                 // Set word wrap to 50 characters
$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';
?>

打开页面时出现此错误。

SMTP 错误:无法连接到 SMTP 主机。无法发送邮件。Mailer 错误:SMTP 错误:无法连接到 SMTP 主机。

请帮忙!

4

2 回答 2

0

我注意到您正在使用 TLS SMTPSecure。

尝试将您的 smtp 端口设置为 587 或 465。

$mail->Port = 465; //SSL
$mail->Port = 587; //TLS

顺便说一句,尝试 ping 您的 smtp 服务器或执行 telnet 尝试每个端口(587 或 465),可能有代理阻止您通过这些端口进行连接。

于 2013-10-12T02:22:20.510 回答
0

对于 $mail->SMTPSecure = 'tls'; 试试 $mail->Port = 587;

于 2013-10-12T02:30:46.673 回答