Sending e-mails via SMTP with PHPMailer and GMail
These days I tried some plugin to send e-mail message within WordPress via SMTP. Since my domains email is hosted with Google applications I decided to send my messages via the SMTP server from GMail. I found several articles and PHPMailer tutorials, but a lot of them didn’t worked for me.
Why using GMail for sending mail messages?
First of all it’s FREE! Sure most website owners can use their own SMTP server for sending email messages from their website, but it makes sense even than to use GMail for sending mail. The chance is big that your websites IP address is on a blacklist if your site is on hosted by a shared web hosting provider. If not or you host your site on your own server, there is always a risk that your IP address get blacklisted. Because of some limitations, the SMTP server from Google is a good choice applications with less than 500 recipients a day, check this information from the Google help pages.
Requirements
You need for this PHPMailer code example a PHP5 enabled web host (I did tests only on Linux), the port 465 need to be open and of course you need a GMail or Google Apps account.
Trouble sending e-mails with your “normal” GMail account? If you own a domain name, you can register for a Google Apps account or check below the tutorial update about an alternative SMTP service!
PHPMailer tutorial for GMail and Google Apps
- If you don’t have one, register a GMail account or setup your domain for Google applications.
- Download a recent version of PHPMailer (I’m using the version 5.02)
- Check with your web hosting provider that port 465 (TCP out) is open, if not ask him to open that port
- Include the PHPMailer class file:
require_once('phpmailer/class.phpmailer.php');
- Create those two constant variables to store your GMail login and password. Use the login for your Google Apps mail account if you have one.
- Use the following function to send the e-mail messages (add the function in one of your included files):Hosting for developers - Free Trial!Most of the settings inside the function are required by GMail. While searching for PHPmailer tutorials I found articles with different settings for the port and security. My advice is to use the settings from this tutorial.
- Call the function within your code:Use this more “advanced” usage inside your application:
Advanced setup with fall-back SMTP server
Because of the e-mail message limit it might be useful to use a secondary SMTP server if the GMail option is unable to send the message. For this functionality we need to replace the part with the SMTP settings. First create login/server variables for the second SMTP server:
Next we need to create an if/else statement using the variables for the second server (replace).
And next use the modified PHPMailer function as followed:
Both examples are very simple and demonstrate only how-to send e-mail messages using PHPmailer with the SMTP server provided by GMail. Of course you can extend the code to handle HTML messages and attachments etc. If you have any issues with these examples, just let me know.
UPDATE: Alternate SMTP service
Since this tutorial was published, I got several messages that the free GMail account doesn’t allow you to send a lot of e-mail messages from your own websites. Your can use this PHPmailer example code for any other SMTP server or service. We suggest to use SendGrid, a premium e-mail service provider in the cloud. Signup for a premium account and het a 25% discount or get a free account which is good for 200 email messages a day.
If you use the tutorial code with SendGrid you need to replace this part of code
with this code
Optional: Remove the “$is_gmail” attribute from the function.
0 Comments