Banner for Sespress
SesPress allows you to send emails using Amazon's Simple Email Service. Wordpress Tutorial
Noted That:
  • To install correctly this sespress.zip .
  • Fisrt Download the sespress.zip to your computer
  • Extract/Open sespress.zip to Your Computer.
  • Then, Find readme.txt file inside sespress.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 " sespress.zip " to Your Local Computer.

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

Login to Wordpress Sespress

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

Go to Plugin Install Sespress

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

Click Upload Button Sespress

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

Upload Plugin Sespress

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

Activate Sespress

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

Noted that: If you do not see " Sespress " 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 Sespress Configurations and Settings or How to work " Sespress " 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 " SesPress " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is SesPress
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide

1) Upload the plugin files to the /wp-content/plugins/sespress directory, or install the plugin through the WordPress plugins screen directly.
2) Activate the plugin through the ‘Plugins’ screen in WordPress.
3) Use the Settings-> SesPress screen to configure your the AWS credentials.
4) Use the following snippet in your code to use the functionality.


add_action( 'wp', 'sespress_send_sample' );
function sespress_send_sample() { $args = array( 'subject' =>
 'Welcome to SesPress', 'recipients' =>
 array( array( 'name' =>
 'John Doe', 'email' =>
 '[email protected]', ), array( 'name' =>
 'Jane Doe', 'email' =>
 '[email protected]', ), ), 'sender' =>
 array( 'name' =>
 'Admin', 'email' =>
 '[email protected]', ), 'message' =>
 array( 'html' =>
 '

Test message embedded in HTML tags.

' ), ); $sespress = new SesPress; $result = $sespress-> send( $args ); echo $result['data']; }

Name