我必須通過Gmail發送郵件,但我不知道如何配置phpmailer
。 當我使用phpmailer
它給了我一個錯誤,但沒有通過身份驗證,但電子郵件和密碼是真實的。phpmailer不工作
下面是代碼:
require '../class.phpmailer.php';
try {
$mail = new PHPMailer(true); //New instance, with exceptions enabled
$body = file_get_contents('contents.html');
$body = preg_replace('/\\\\/','', $body); //Strip backslashes
$mail->IsSMTP(); // tell the class to use SMTP
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Port = 25; // set the SMTP server port
$mail->Host = "smtp.gmail.com"; // SMTP server
$mail->Username = "[email protected]"; // SMTP server username
$mail->Password = "mypassword"; // SMTP server password
$mail->IsSendmail(); // tell the class to use Sendmail
$mail->AddReplyTo("[email protected]","First Last");
$mail->From = "[email protected]";
$mail->FromName = "First Last";
$to = "[email protected]";
$mail->AddAddress($to);
$mail->Subject = "First PHPMailer Message";
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->WordWrap = 80; // set word wrap
$mail->MsgHTML($body);
$mail->IsHTML(true); // send as HTML
$mail->Send();
echo 'Message has been sent.';
} catch (phpmailerException $e) {
echo $e->errorMessage();
}
?>
我得到這個錯誤:
Could not execute: /var/qmail/bin/sendmail
你有沒有看着[任一](https://www.google.com/#q=Could+not+execute%3A+%2Fvar %2Fqmail%2Fbin%2Fsendmail)? –
服務器的操作系統是什麼? – SaidbakR