Plugin info

Total downloads: 2,712
Active installs: 10
Total reviews: 1
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 1/3/2018 (2917 days ago)
Added to WordPress: 3/19/2016 (9 years old)
Minimum WordPress version: 3.0.1
Tested up to WordPress version: 4.9.28
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2917 days ago • 1 reviews

22/100

Is WP Mail SES abandoned?

Possibly abandoned (last update 2917 days ago).

Compatibility

Requires WordPress: 3.0.1
Tested up to: 4.9.28
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Gnaritas Amazon SES
Rating 4.3/5 (6 reviews)Active installs 20
MBC SMTP Flex
Rating 0.0/5 (0 reviews)Active installs 10
Nanomailer for AWS SES
Rating 0.0/5 (0 reviews)Active installs 0
SMTP for Amazon SES – YaySMTP
Rating 4.1/5 (9 reviews)Active installs 3,000
Mailster AmazonSES Integration
Rating 5.0/5 (4 reviews)Active installs 2,000
WP easy mail SES
Rating 0.0/5 (0 reviews)Active installs 10

Description

Uses Amazon Web Services (AWS) Simple Email Service (SES) to send emails.
Based on the original WP SES project by Sylvain Deaure. Main differences:

  • Does not store credentials in the database
  • Convention over configuration
  • Removed any functionality which can be done via AWS Console
  • Open Source and version controlled via GitHub

Usage

View statistics

Go to: Admin » Dashboard » SES Statistics

Send test message

Go to: Admin » Settings » WP Mail SES

Hooks/Filters

wp_mail_ses_sent_email - This function is called once an email has been sent

to SES and provides two parameters:

  • $message_id (string or null) –
    The MessageId as provided by SES if the request was successful,
    otherwise null.
  • $mail_data (array) –
    A hash map containing the information used to send the email. Keys include:
    to, subject, message, headers, attachments

Example:

add_filter( 'wp_mail_ses_sent_email', function ( $message_id, $mail_data ) {
    if ( is_null( $message_id ) ) {
        echo "Sending failed";
    } else {
        echo "Sending successful";
    }

    print_r( $mail_data );
} );

Installation

Follow these instructions:

1. Amazon confirmation and approval

You will need to setup Simple Email Service (SES) on your Amazon Web Services
account before you can use this plugin.

For more information, read Amazon’s documentation on how to setup
SES

2. Update configuration

Update your wp-config.php file to include the required constants:

/**
 * Include your AWS keys.
 *
 * A safe approach is to store your key and secret in environment
 * variables. This way, your credentials are not hard coded in version
 * control.
 */

define( 'WP_MAIL_SES_ACCESS_KEY_ID', getenv( 'WP_MAIL_SES_ACCESS_KEY_ID' ) );
define( 'WP_MAIL_SES_SECRET_ACCESS_KEY', getenv( 'WP_MAIL_SES_SECRET_ACCESS_KEY' ) );

/**
 * Define the endpoint for your emails to be sent. Endpoints include:
 *
 * email.us-east-1.amazonaws.com
 * email.us-west-2.amazonaws.com
 * email.eu-west-1.amazonaws.com
 */

define( 'WP_MAIL_SES_ENDPOINT', 'email.eu-west-1.amazonaws.com' );

Optional extra configuration:

/**
 * Define the composer information for your email (who the email is
 * sent from). The email address must be approved in your AWS console
 * in the specified region.
 *
 * This email address is used if a composer is not already defined by
 * the email.
 */

define( 'WP_MAIL_SES_COMPOSER_NAME', 'Company Name' );
define( 'WP_MAIL_SES_COMPOSER_EMAIL', '[email protected]' );

/**
 * Disable accessing of statistics from the Dashboard.
 * This can help if you're hitting the API too frequently.
 */

define( 'WP_MAIL_SES_HIDE_STATISTICS', true );

3. Install plugin

Copy this folder wp-mail-ses to your /wp-content/plugins/ directory.

4. Activate plugin

Go to your WordPress Administration and activate the WP Mail SES plugin.

5. Send a test message

Go to: Admin » Settings » WP Mail SES

Frequently Asked Questions

Installation Instructions

Follow these instructions:

1. Amazon confirmation and approval

You will need to setup Simple Email Service (SES) on your Amazon Web Services
account before you can use this plugin.

For more information, read Amazon’s documentation on how to setup
SES

2. Update configuration

Update your wp-config.php file to include the required constants:

/**
 * Include your AWS keys.
 *
 * A safe approach is to store your key and secret in environment
 * variables. This way, your credentials are not hard coded in version
 * control.
 */

define( 'WP_MAIL_SES_ACCESS_KEY_ID', getenv( 'WP_MAIL_SES_ACCESS_KEY_ID' ) );
define( 'WP_MAIL_SES_SECRET_ACCESS_KEY', getenv( 'WP_MAIL_SES_SECRET_ACCESS_KEY' ) );

/**
 * Define the endpoint for your emails to be sent. Endpoints include:
 *
 * email.us-east-1.amazonaws.com
 * email.us-west-2.amazonaws.com
 * email.eu-west-1.amazonaws.com
 */

define( 'WP_MAIL_SES_ENDPOINT', 'email.eu-west-1.amazonaws.com' );

Optional extra configuration:

/**
 * Define the composer information for your email (who the email is
 * sent from). The email address must be approved in your AWS console
 * in the specified region.
 *
 * This email address is used if a composer is not already defined by
 * the email.
 */

define( 'WP_MAIL_SES_COMPOSER_NAME', 'Company Name' );
define( 'WP_MAIL_SES_COMPOSER_EMAIL', '[email protected]' );

/**
 * Disable accessing of statistics from the Dashboard.
 * This can help if you're hitting the API too frequently.
 */

define( 'WP_MAIL_SES_HIDE_STATISTICS', true );

3. Install plugin

Copy this folder wp-mail-ses to your /wp-content/plugins/ directory.

4. Activate plugin

Go to your WordPress Administration and activate the WP Mail SES plugin.

5. Send a test message

Go to: Admin » Settings » WP Mail SES

Why isn’t my email sending?

There are a number of reasons that an email might not be sent via SES, here is
a quick checklist to ensure that the plugin has been setup properly:

Have you:

  • Defined WP_MAIL_SES_ACCESS_KEY_ID, WP_MAIL_SES_SECRET_ACCESS_KEY and
    WP_MAIL_SES_ENDPOINT in wp-config.php?
  • Confirmed that you own a domain name in the Amazon SES console?
  • Confirmed an email address in the Amazon SES console?
  • Requested your service limit to be increased ?
  • Tried defining WP_MAIL_SES_COMPOSER_EMAIL in wp-config.php with your
    verified email address?

I can send emails to myself, but not to others

In order to send emails to the public, you need to move out of the Amazon SES
Sandbox and into the production account. Read the documentation on
Amazon
.

Got another question?

You can post your question on GitHub.

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

0.0.4

  • Integrated with Travis CI
  • Added PHPCS and linked to WordPress-Extra standards
  • Cleaned up code with phpcs/phpcbf
  • Added .editorconfig
  • Updated SimpleEmailService to 0.9.0

0.0.3

  • Bug fix for $recipients variable [#3]

0.0.2

  • Added filter to notify of email sent status [#2]

0.0.1

  • Initial release