I am trying to send email using PHPMailer
I have all the correct setting and the email is sent succesfully according to the CPanel Email Trace.
However, I am not receiving any emails
This only occurs if I send to Gmail (I haven't tested yahoo or any other). If I send to my own domain, i.e. @open-plant.com.. it works fine. Email is received
I have checked GMAIL spam, trashcan, junk mail and etc... it is not going to those places.
The Email trace shows succesfull but NO email at 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
The following is my phpcode
<?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";
?>