Deze plugin is niet getest met de laatste 3 grotere versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Ook kunnen er compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

SesPress

Beschrijving

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

Installatie

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' => 'johndoe@example.com',
            ),
            array(
                'name' => 'Jane Doe',
                'email' => 'janedoe@example.com',
            ),
        ),
        'sender' => array(
            'name' => 'Admin',
            'email' => 'admin@mysite.com',
        ),
        'message' => array(
            'html' => '<h2>Test message embedded in HTML tags.</h2>'
        ),
    );
    $sespress = new SesPress;
    $result = $sespress->send( $args );
    echo $result['data'];
}

FAQ

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' => 'johndoe@example.com',
            ),
            array(
                'name' => 'Jane Doe',
                'email' => 'janedoe@example.com',
            ),
        ),
        'sender' => array(
            'name' => 'Admin',
            'email' => 'admin@mysite.com',
        ),
        'message' => array(
            'html' => '<h2>Test message embedded in HTML tags.</h2>'
        ),
    );
    $sespress = new SesPress;
    $result = $sespress->send( $args );
    echo $result['data'];
}

Beoordelingen

Er zijn geen beoordelingen voor deze plugin.

Bijdragers & ontwikkelaars

“SesPress” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “SesPress” naar jouw taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.