I am using Gmail SMTP for sending emails in php. The code is working fine in one of my client website. When I am using the same code for another client website, I am getting an error like "Could not authenticate, SMTP connect() failed.
https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting"
. I don't have knowledge in server settings. Both websites are on different servers. Please check the below code.
<?php
require 'PHPMailer/PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->Host = 'smtp.gmail.com';
//$mail->isSMTP();
$mail->SMTPDebug = 2;
$mail->SMTPAuth = true;
$mail->Username = 'example@gmail.com';
$mail->Password = 'password';
$mail->SMTPSecure = 'ssl';
$mail->Port = 465; // for tls 587
$mail->Subject = 'Test Email';
$mail->isHTML(true);
$mail->Body = 'Message from test website';
$mail->setFrom('mahmood.bts@gmail.com');
$mail->addAddress('test@companyname.com');
$mail->addCC('info@companyname.com');
if($mail->send())
echo "mail is sent";
else
echo $mail->ErrorInfo;
?>
I used php mail function instead of SMTP, Then also I am unable to send emails. Please help me.