radig/ses-transport

This package is abandoned and no longer maintained. No replacement package was suggested.

CakePHP transport for Amazon SES

Installs: 643

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 5

Forks: 1

Open Issues: 0

Type:cakephp-plugin

1.0.0 2013-09-09 15:18 UTC

This package is auto-updated.

Last update: 2021-04-14 13:17:39 UTC


README

Transport to send email with Amazon AWS SES

Dependencies

Install

With Composer

    composer install radig/SesTransport

Without Composer

  • Clone or download into Plugin directory. Directory should named 'SesTransport'
  • Install AWS-SDK for PHP into app/Vendor/AWS

How to use

Just setup your email configuration as any other

    public $default = array(
        'transport' => 'SesTransport.SesApi'
    );

Now, just send your message

    $email = new CakeEmail()
        ->from($from)
        ->to($to)
        ->subject($subject)
        ->send();

h2. Author e Copyright