我想使用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 ..