I have problem with sending mail to gmail acc, IF im sending to outlook account im getting fine latter and its not junk.
so if in this line im write
$mail->AddAddress
gmail account something like what test@gmail.com. I dont get any latter's, but if im writing outlook account, im getting mail like photo bellow
My code in PHPMailer
require 'PHPMailer/PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->SMTPDebug = 3; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'mail.sssss.lt'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'noreply@sssss.lt'; // SMTP username
$mail->Password = 'q8sAFF3S'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
$mail->SMTPOptions = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)
);
$mail->From = "noreply@sssss.lt";
$mail->FromName = "Patvirtinimo laiskas <noreply@sssss.lt>";
$mail->AddAddress ("sssss@gmail.com");
$mail->AddReplyTo = "noreply@sssss.lt";
$mail->WordWrap = 50;
$mail->isHTML(false); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$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;
} else {
echo 'Message has been sent';
}
All help will be appreciated