Plugin info

Total downloads: 906
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 1/10/2018 (2911 days ago)
Added to WordPress: 1/10/2018 (7 years old)
Minimum WordPress version: 4.7
Tested up to WordPress version: 4.9.28
Minimum PHP version: 5.6

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2911 days ago

20/100

Is SesPress abandoned?

Possibly abandoned (last update 2911 days ago).

Compatibility

Requires WordPress: 4.7
Tested up to: 4.9.28
Requires PHP: 5.6

Similar & Alternatives

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

No similar plugins found yet.

Description

SesPress allows you to send emails using Amazon’s Simple Email Service.

Major features in SesPress includes:

  • Support to enable/disable the mail functionality
  • Ability to add a default sender
  • Test mode to override recipients with a test mode recipient at the time of testing
  • Ability to send mail templates with dynamic data

Installation

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' => '<h2>Test message embedded in HTML tags.</h2>'
        ),
    );
    $sespress = new SesPress;
    $result = $sespress->send( $args );
    echo $result['data'];
}

Frequently Asked Questions

Installation Instructions

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' => '<h2>Test message embedded in HTML tags.</h2>'
        ),
    );
    $sespress = new SesPress;
    $result = $sespress->send( $args );
    echo $result['data'];
}

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

No changelog available