=== Gmail SMTP ===
Contributors: naa986
Donate link: https://wphowto.net/
Tags: smtp, gmail, mail, mailer, phpmailer, wp_mail, email, oauth2
Requires at least: 4.3
Tested up to: 4.6
Stable tag: 1.0.6
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Connect to Gmail SMTP server to automatically send email from your WordPress site. Configure wp_mail() to use SMTP with OAuth 2.0 authentication.
== Description ==
[Gmail SMTP](https://wphowto.net/gmail-smtp-plugin-for-wordpress-1341) plugin allows you to authenticate with your Gmail account to send email via Gmail SMTP server.
Most shared hosting servers have restrictions when it comes to email. Usually email will get blocked or missing for no reason. Sometimes it will get blocked when your website reaches the daily limit of outgoing email. This plugin can bypass this issue by routing the email through Gmail's SMTP server.
= Gmail SMTP Benefits =
* Gmail SMTP plugin is not like most SMTP plugins. It uses the OAuth 2.0 protocol to authorize access to the Gmail API - which means a more secure login system and users won't have to enter any username or password.
* Gmail SMTP plugin uses PHPMailer - a very popular library used for sending email through PHP's mail function. This libary is also used in the core WordPress to send email.
* Gmail SMTP plugin utilizes "wp_mail" (A function used by WordPress to send email) instead of completely overriding it. This way you still get all the benefits of the default mail function.
* You no longer need to enable **Allow less secure apps** on your gmail account to fix SMTP connection issue. This issue became prominent from December 2014, when Google started imposing XOAUTH2 authentication (based on OAuth2) to access their apps. This issue still affects almost all the SMTP plugins because they authenticate via username and password.
= How OAuth 2.0 Authorization Works =
* You register an application in the Google Developers Console.
* The application is launched and it requests that you give it access to data in your Google account.
* If you consent, the application receives credentials to access the Gmail API.
= Gmail SMTP Features =
* Configure your website to send email using Gmail SMTP server
* Authenticate using OAuth 2.0 protocol
* Authenticate with encryption when sending an email (TLS/SSL)
= Gmail SMTP Basic Setup =
* Go to the plugin settings (`Settings->Gmail SMTP`).
* Create a new web application using the link.
* Set the **Authorized Redirect URL** of the application as the one shown in the settings.
* Copy the **Client ID** and **Client secret** and paste into the settings area.
* Enter your OAuth Email, From Email and From name.
* Select an encryption.
* Enter a port number.
* Save the settings.
* Now you can authorize your application to access the Gmail API by clicking on the **Grant Permission** button.
* Once the application has been authorized Gmail SMTP plugin will be able to take control of all outgoing email.
= Gmail SMTP Settings =
* **Authorized Redirect URI**: Authorized redirect URL for your website. You need to copy this URL into your web application.
* **Client ID**: The client ID of your web application.
* **Client secret**: The client secret of your web application.
* **OAuth Email Address**: The email address that you will use for SMTP authentication. This should be the same email used in the Google Developers Console.
* **From Email Address**: The email address which will be used as the From Address when sending an email.
* **From Name**: The name which will be used as the From Name when sending an email.
* **Type of Encryption**: The encryption which will be used when sending an email (TLS/SSL. TLS is recommended).
* **SMTP Port**: The port which will be used when sending an email. If you choose TLS it should be set to 587. For SSL use port 465 instead.
* **Disable SSL Certificate Verification**: As of PHP 5.6 a warning/error will be displayed if the SSL certificate on the server is not properly configured. You can check this option to disable that default behaviour.
= Gmail SMTP Test Email =
Once you have configured the settings you can send a test email to check the functionality of the plugin.
* **To**: Email address of the recipient.
* **Subject**: Subject of the email.
* **Message**: Email body.
For detailed setup instructions please visit the [Gmail SMTP](https://wphowto.net/gmail-smtp-plugin-for-wordpress-1341) plugin page.
= Requirements =
* PHP 5.4 or later
* A Gmail Account
* A self-hosted WordPress site
== Installation ==
1. Go to the Add New plugins screen in your WordPress Dashboard
1. Click the upload tab
1. Browse for the plugin file (gmail-smtp.zip) on your computer
1. Click "Install Now" and then hit the activate button
== Frequently Asked Questions ==
= Can I send email from my Gmail account using this plugin? =
Yes.
= Can this plugin use OAuth 2.0 to send email? =
Yes.
== Screenshots ==
For screenshots please visit the [Gmail SMTP](https://wphowto.net/gmail-smtp-plugin-for-wordpress-1341) plugin page
== Upgrade Notice ==
none
== Changelog ==
= 1.0.6 =
* Added a new option to bypass this error on some servers where the SSL certificate is not properly configured - Warning: stream_socket_enable_crypto(): SSL operation failed with code 1.
OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
= 1.0.5 =
* Fixed a bug that was causing this error - "Strict Standards: Non-static method GmailXOAuth2::getClient()"
= 1.0.4 =
* google-api-php-client's autoloader path now points to the src directory as the current autoloader has been deprecated
* Gmail SMTP plugin is now compatible with WordPress 4.4
= 1.0.3 =
* Added a new tab to show some server related information
* More debug data will be shown when sending a test email
= 1.0.2 =
* Fixed a bug where the oauth URL was pointing to localhost
= 1.0.1 =
* First commit