无法从PHPMailer发送电子邮件,没有给出错误,消息成功


UNABLE To SEND EMAIL from PHPMailer, No Error Given, Message was successful

我正在尝试使用PHPMailer 发送电子邮件

我有所有正确的设置,并且根据CPanel电子邮件跟踪成功发送了电子邮件。

然而,我没有收到任何电子邮件

只有当我发送到Gmail时才会发生这种情况(我还没有测试过雅虎或任何其他)。如果我发送到我自己的域,即@openplant.com…它工作得很好。收到电子邮件

我检查过GMAIL垃圾邮件、垃圾桶、垃圾邮件等等……它不会去那些地方。

电子邮件跟踪显示成功,但在azrinsani@gmail.com:

vent: success success
User: azrinsani
Domain:   open-plant.com
Sender:   sales@open-plant.com
Sent Time:    Dec 2, 2015 9:25:09 AM
Sender Host:  pa49-196-132-8.pa.vic.optusnet.com.au
Sender IP Address:    49.196.132.8
Authentication:   dovecot_login
Spam Score:   0
Recipient:    azrinsani@gmail.com
Delivery User:    -remote-
Delivery Domain:  
Delivered To: azrinsani@gmail.com
Router:   smarthost_dkim
Transport:    remote_smtp_smart_dkim
Out Time: Dec 2, 2015 9:25:09 AM
ID:   1a3wAX-003r8M-GZ
Delivery Host:    se3-syd.hostedmail.net.au
Delivery IP Address:  103.252.152.0/24
Size: 709 bytes
Result:   Accepted

以下是我的php代码

<?php
require 'PHPMailerAutoload.php';
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Mailer = 'smtp';
$mail->SMTPAuth = true;

$mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only
$mail->Port = 465; // or 587
$mail->Host = 'c1s4-2e-syd.hosting-services.net.au'; // "ssl://smtp.gmail.com" didn't worked
$mail->SMTPSecure = 'ssl';
$mail->Username = "sales@open-plant.com";
$mail->Password = "PASSWORDCENSORED";
$mail->IsHTML(true); // if you are going to send HTML formatted emails
$mail->SingleTo = true; // if you want to send a same email to multiple users. multiple emails will be sent one-by-one.
$mail->From = "sales@open-plant.com";
$mail->FromName = "Open-Plant";
$mail->addAddress("azrinsani@gmail.com","User 1");
$mail->Subject = "TESTING PHPMailer";
$mail->Body = "Hi,<br /><br />This system is working perfectly.";
if(!$mail->Send())
    echo "Message was not sent <br />PHPMailer Error: " . $mail->ErrorInfo;
else
    echo "Message has been sent";
?>

问题已解决!

好的,原来我的主机服务器阻止了电子邮件。他们说他们有垃圾邮件过滤器,我的电子邮件被发现了。因此,经验教训=不要相信电子邮件跟踪。。。因为他们的电子邮件痕迹显示一切都很好!

相关文章: