phpmailer不发送邮件

时间:2017-02-27 09:55:58

标签: php email phpmailer

我想使用phpmailer发送邮件。我用Google搜索并得到了link,它为我提供了指导。我使用了以下代码。

require 'PHPMailer-master/PHPMailerAutoload.php';

$mail = new PHPMailer(true);
$mail->setFrom('xxx@gmail.com');
$mail->addAddress('xyz@gmail.com');
$mail->Subject  = 'First PHPMailer Message';
$mail->Body     = 'Hi! This is my first e-mail sent through PHPMailer.';
if(!$mail->send()) {
  echo 'Message was not sent.';
  echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
  echo 'Message has been sent.';
}

结果中,邮件未发送。没有错误。输出为 Message has been sent.

任何人都可以帮我解决这个问题。

Thanx ..

0 个答案:

没有答案