Join us
@sofiatarhonska ă» Nov 02,2022 ă» 6 min read ă» 1k views ă» Originally posted on mailtrap.io
PHPMailer is one of the most popular PHP code libraries used by CMS giants such as Drupal, WordPress, and Joomla, to send emails using Gmail as the email client. With that in mind, it naturally made sense for us to make this tutorial on how to send emails with PHPMailer via Gmail SMTP.Â
Additionally, weâll examine the limitations the two have and what alternatives are out there. Similarly, if youâd like to learn more about sending emails with PHP, check out our comprehensive guide on the subject.Â
If youâre new to PHPMailer and want to explore beyond PHPMailer setup for Gmail feel free to read our PHPMailer Guide.
The first step in sending an HTML or a plain text email with PHPMailer is to require PHPMailer to use Composer (one of the most common ways of adding packages to PHP projects).
Add this line to your composer.json file in the ârequireâ {} section:
"phpmailer/phpmailer": "^6.6"
Or open the command prompt in your project root directory and run:
composer require phpmailer/phpmailer
If the package is successfully added you should see the PHPMailer included in the composer.json file
Refer to PHPMailer documentation on Github for detailed installation instructions.
Prior to May 30, 2022, from your Google account security settings âLess secure app accessâ had to be turned on to send emails using PHPMailer. Since the âLess secure appsâ feature that allows third-party software and devices to sign in to your Gmail account is no longer supported by Google you can choose the other more secure options available.Â
The âLess secure app accessâ is not available for accounts with or without 2-Factor authentication enabled any longer. If 2-step verification is enabled for your Gmail account and you wish to use it with PHPMailer as well, you will need to create an App password to continue by following these Google instructions. It is a 16-digit passcode, which you should put as a value to $mail->Password
.
OAuth2 is the most complicated but still the recommended method for authenticating PHPMailer to send mail using Gmail. Fortunately, there is oauth2-google. It is a package to support Google OAuth 2.0 for the PHP Leagueâs OAuth 2.0 Client. It supports PHP 7.0 â PHP 7.3.Â
To use it, you need to get a Google client ID and client secret first. Follow this Google guide to set everything up.Â
Once completed, install the package with the composer
command and add the authorization details as shown below:
For more details, follow the oauth2-google on GitHub.Â
The next step is to include the PHPMailer library in your PHP file used to write the code for html emails, e.g sendemail.php
After this, youâll need to enable SMTP authentication by connecting to the SMTP host âsmtp.gmail.comâ, listing your Gmail credentials and the relevant cryptographic protocol. Note in our example, we use the SSL instead of TLS as the security protocol with port 465.
Now that all of the configurations are set up, run the following script after entering real values in the placeholders:
Hereâs an output of the mail sent:Â
Using the regular mail function in PHP, itâs possible to send emails with attachments. However, this method requires a localhost mail server, writing lengthy code, and increases the chances of bugs in your app that will require lots of troubleshooting in the future. For those reasons, using the PHPMailer script is a more efficient and secure way to go about this.
In the example below, weâll examine how with PHPMailer you can send both single and multiple attachments. The first step is to pass a directory path of the attachment to the addAttachment
method.Â
Here is what the full code would look like:
Hereâs an output of the mail delivery with an attachment:
Additionally, PHPMailer can be used in a PHP contact form to send emails with attachments.
Prior to developing an app that will have an email-sending functionality with PHPMailer via Gmail, itâs important to understand the limitations of both systems to avoid any SMTP errors.
PHPMailer is a great library that reduces web development time and helps you build email sending and other types of notifications functionality but itâs not without its issues.Â
In the past security vulnerabilities have been found in the library, in particular those that exposed the mail server to malicious attacks via contact forms on a website.Â
It is important to note that PHPMailer had the vulnerability patched in since it was exposed and released documentation on how to deal with it.Â
For most projects that are at a starting point, a regular Gmail account is enough. However, Gmail does have its own limitations and at a certain stage, you might need to switch to a service that fits your needs.
Besides Gmail, the dominant choice for many, there are many other free and affordable email clients on the market. Some of the most comparable to Gmail and its functionality includes:
Other than the default PHP mail() function and the widely popular PHPMailer there are a few more alternatives that let you send mail. Choosing the right method highly depends on the main goal of your project. Additionally, prior to making your pick, itâs important to understand the automation capabilities, documentation, security level, and available support for that alternative. Letâs quickly go through the available options.Â
An internal email-sending system of the open-source PHP framework, Symfony. The system allows creating and sending emails and comes with CSS inlining, Twig integration, file attachment capabilities, and support for multipart messages. Predominantly important in our context, Symfony Mailer can be directly integrated with the most popular email-sending providers.Â
A non-framework-dependent straightforward API Wrapper that is easy to integrate into a PHP application. The API wrapper is used in Postmark, SendGrid, MailGun, Mandrill, and many other third-party email-sending services that can be used in your project.Â
An Email API that allows you to perform quick troubleshooting, and debugging, and prevent sending issues thanks to actionable analytics features. With our Email API/SMTP Relay you can access email logs up to 60 days old, so you can gain greater insight into where your email infrastructure is at.
Mailtrap API integration in your PHP project can be done in a few simple and quick steps:
Adding email-sending functionality in your app is only one part, testing that functionality is a second part that is equally, if not more, important.
Whether itâs finding broken links, checking that the content gets rendered correctly, running spam tests, and checking your deliverability rate are just a few reasons why email testing in PHP apps, or any other for that matter, is critical.Â
No matter whether itâs a PHP, Python, Javascript, or any other language email library, itâs designed for sending and lacks proper testing capabilities. To do all of these tests, youâll need a comprehensive tool, one like Mailtrap Email Sandbox. The Sandbox is widely used by developers to inspect emails and perform SMTP debugging in a safe environment without the risk of spamming recipients.
The time-saving solution allows you to capture SMTP traffic from staging, run a spam score, see that the dynamic content is rendered accurately across all types of devices, analyze email headers and validate HTML/CSS.Â
Thanks for reading our guide! It was originally published on Mailtrap Blog by Denys Kontorskyy: https://mailtrap.io/blog/phpmailer-gmail/
Join other developers and claim your FAUN account now!
Influence
Total Hits
Posts
Only registered users can post comments. Please, login or signup.