Bobcares

PHPMailer using Gmail SMTP server | How-to Guide

by | May 2, 2022

PHPMailer using Gmail SMTP server can be set up easily with this quick guide by our experts.  

At Bobcares, we offer solutions for every query, big and small, as a part of our Server Management Services.

Let’s take a look at how our Support Team is ready to help customers with PHPMailer using Gmail SMTP server.

How to send an email with PHPMailer using Gmail SMTP server

PHPMailer is popular over simple mail as it offers a lot of additional functionality like attachments, encryption, authentication, and so on. Furthermore, it simplifies the process of sending HTML emails.

Additionally, we don’t need to utilize a local mail server as it contains an integrated SMTP client. It’s useful for platforms that don’t have a local mail server, such as Pantheon.

Although there are other alternative options, our Support Techs recommend PHPMailer over them. Today, we are going to take a look at how we can use PHPMailer to send emails via Gmail SMTP.

Before we proceed, here are a few of the limitations of Gmail SMTP servers and how to deal with them:

  • The number of recipients in a single email and the number of emails that can be sent each day are set to 500 emails and 500 recipients respectively in Gmail. There is no way to exceed this restriction. However, we can send more than these limits, by using a third-party email distribution platform.
  • If we surpass the above threshold, we will not be able to send messages for the upcoming 24 hours. We can resume sending emails after the counter resets after the temporary suspension period ends.
  • Third-party apps/codes can not send emails using our Gmail account by default. Fortunately, we can alter this by modifying a few settings as seen in the next section.

How to enable Third-party Apps/Code Email Sending in Gmail

  1. Begin by heading to the Google Account Security Settings.
  2. Then, ensure the 2-Step Verification is disabled.
  3. Next, turn the Less Secure App setting to ON.
  4. After that, create an app password for the application or device. Google may ask us to perform this additional step as part of the sign-in process for security reasons.
  5. Finally, allow access to our Google account via the new device/app.

How to install PHPMailer

Our Support Techs offer two ways to install PHPMailer:

  • Via Composer:

    In this method, add the following code to the composer.json:

    "phpmailer/phpmailer": "^6.2"
  • Via Terminal:

    Here, execute the following command to install PHPMailer:

    composer require phpmailer/phpmailer

Alternatively, we can also download PHPMailer from this link and copy the contents of the folder to one of the PHP configuration’s include_path directories.

After that, add the following code to the PHP file to manually load each class file:

use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require 'path/to/PHPMailer/src/Exception.php';
require 'path/to/PHPMailer/src/PHPMailer.php';
require 'path/to/PHPMailer/src/SMTP.php';

Sample PHP code to send email via Gmail SMTP

Here is the code we need to add to the PHP file via which we want to send the email. Our Support Techs would like to point out that we have to change the values as per our domain and usernames.

//Import PHPMailer classes into the global namespace
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;

require ‘vendor/autoload.php’;

$mail = new PHPMailer(true);
$mail->IsSMTP();
$mail->Mailer = “smtp”;

try {
$mail->SMTPDebug = 1;
$mail->SMTPAuth = TRUE;
$mail->SMTPSecure = “tls”;
$mail->Port = 587;
$mail->Host = “smtp.gmail.com”;
$mail->Username = “your-email@gmail.com”;
$mail->Password = “your-gmail-password”;

//Recipients
$mail->IsHTML(true);
$mail->AddAddress(“recipient@domain”, “recipient-name”);
$mail->SetFrom(“from@gmail.com”, “from-name”);
$mail->AddReplyTo(“reply-to@domain”, “reply-to-name”);
$mail->AddCC(“cc-recipient@domain”, “cc-recipient-name”);
$mail->Subject = “Test Email sent via Gmail SMTP Server using PHP Mailer”;
$content = “<b>This is a Test Email sent via Gmail SMTP Server using PHP mailer class</b>.”;

//Attachments
$mail->addAttachment(‘/var/tmp/file.tar.gz’); //Add attachments
$mail->addAttachment(‘/tmp/image.jpg’, ‘new.jpg’); //Optional name

//Content
$mail->MsgHTML($content);
if(!$mail->Send()) {
echo “Error while sending Email.”;
var_dump($mail);
} else {
echo “Email sent successfully”;
}
}

With these new changes, we will be able to successfully send an email via Gmail SMTP server using PHPMailer.

[Need assistance with another query? We are available 24/7.]

Conclusion

In brief, our skilled Support Engineers at Bobcares demonstrated how to send an email with PHPMailer using Gmail SMTP server

PREVENT YOUR SERVER FROM CRASHING!

Never again lose customers to poor server speed! Let us help you.

Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.

GET STARTED

2 Comments

  1. Colin Gross

    I have been using PHPMailer for several years with a setup similar to your recommendations. Unfortunately as of 31 May 2022 Google has removed the option “Next, turn the Less Secure App setting to ON.” (Your step 3.) and since them my emails have been failing with “SMTP Error: Could not authenticate.”

    Are you aware of any way round it or alternative solution?

    Reply
    • Syam S

      Hi Colin,
      Please contact our support team via live chat

      Reply

Submit a Comment

Your email address will not be published. Required fields are marked *

Never again lose customers to poor
server speed! Let us help you.

Privacy Preference Center

Necessary

Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure areas of the website. The website cannot function properly without these cookies.

PHPSESSID - Preserves user session state across page requests.

gdpr[consent_types] - Used to store user consents.

gdpr[allowed_cookies] - Used to store user allowed cookies.

PHPSESSID, gdpr[consent_types], gdpr[allowed_cookies]
PHPSESSID
WHMCSpKDlPzh2chML

Statistics

Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously.

_ga - Preserves user session state across page requests.

_gat - Used by Google Analytics to throttle request rate

_gid - Registers a unique ID that is used to generate statistical data on how you use the website.

smartlookCookie - Used to collect user device and location information of the site visitors to improve the websites User Experience.

_ga, _gat, _gid
_ga, _gat, _gid
smartlookCookie
_clck, _clsk, CLID, ANONCHK, MR, MUID, SM

Marketing

Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third party advertisers.

IDE - Used by Google DoubleClick to register and report the website user's actions after viewing or clicking one of the advertiser's ads with the purpose of measuring the efficacy of an ad and to present targeted ads to the user.

test_cookie - Used to check if the user's browser supports cookies.

1P_JAR - Google cookie. These cookies are used to collect website statistics and track conversion rates.

NID - Registers a unique ID that identifies a returning user's device. The ID is used for serving ads that are most relevant to the user.

DV - Google ad personalisation

_reb2bgeo - The visitor's geographical location

_reb2bloaded - Whether or not the script loaded for the visitor

_reb2bref - The referring URL for the visit

_reb2bsessionID - The visitor's RB2B session ID

_reb2buid - The visitor's RB2B user ID

IDE, test_cookie, 1P_JAR, NID, DV, NID
IDE, test_cookie
1P_JAR, NID, DV
NID
hblid
_reb2bgeo, _reb2bloaded, _reb2bref, _reb2bsessionID, _reb2buid

Security

These are essential site cookies, used by the google reCAPTCHA. These cookies use an unique identifier to verify if a visitor is human or a bot.

SID, APISID, HSID, NID, PREF
SID, APISID, HSID, NID, PREF