Banner for Wp Mail Ses
Uses Amazon Web Services (AWS) Simple Email Service (SES) to send emails in WordPress. Wordpress Tutorial
Noted That:
  • To install correctly this wp-mail-ses.zip .
  • Fisrt Download the wp-mail-ses.zip to your computer
  • Extract/Open wp-mail-ses.zip to Your Computer.
  • Then, Find readme.txt file inside wp-mail-ses.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.
Start the Tips:

Step-1 : Download " wp-mail-ses.zip " to Your Local Computer.

Step-2 : Then, Login to your " yourdomain.com/wp-admin " Dashboard.

Login to Wordpress Wp Mail Ses

Step-3 : Then, Click on " Plugins " + " Add New " from left Side Menu of Dashboard.

Go to Plugin Install Wp Mail Ses

Step-4 : Now, Click on " Upload Plugin " button.

Click Upload Button Wp Mail Ses

Step-5 : Now, Browse " wp-mail-ses.zip " Downloaded plugin from your computer, Where you downloaded " wp-mail-ses.zip " According to Step – 1 Above then, click on " Install Now "

Upload Plugin Wp Mail Ses

Step-6 : Now, Click on " Active Plugin "

Activate Wp Mail Ses

Step-7 : Then, See left Side Menu. " Wp Mail Ses " folder is added on left Side Menu. Now, Click on " Wp Mail Ses " folder.

Noted that: If you do not see " Wp Mail Ses " folder on left Side Menu then, see at left Side Menu " Settings " or " Tools ".

Step-8 : Now you configure yourself oR Watch video tutorial below about Wp Mail Ses Configurations and Settings or How to work " Wp Mail Ses " in your WordPress site.

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " WP Mail SES " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is WP Mail SES
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide

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


Name