簡體   English   中英

phpmailer成功,但未發送電子郵件

[英]phpmailer success but no email sent

PHPMailer說成功,但是未發送電子郵件。 電子郵件跟蹤不顯示任何錯誤。 通過發送或接收電子郵件。 有什么我想念的嗎?

以下是我的mailer.php文件:

    require 'class.phpmailer.php';
require 'class.smtp.php';

$mail = new PHPMailer;


$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'localhost';  // Specify main and backup server
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'diane@example.com';                            // SMTP username: FROM EMAIL
$mail->Password = 'pw';                           // SMTP password: FROM PW


$mail->From = 'diane@example.com'; //FROM EMAIL
$mail->addAddress('terry@example.com');               // Add a recipient, Name is optional


$mail->WordWrap = 50;                                 // Set word wrap to 50 characters
$mail->isHTML(true);                                  // Set email format to HTML

$mail->Subject = 'Contact Form';
$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';

我不確定為什么要使用此方法在PHP中發送電子郵件。 這是實現此目的的更好方法:

$to = 'test@test.com';
$subject = 'Lorem Ipsum';
$from = 'me@me.com';
$message = 'Congrats! You won! Message body here.';
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM