radig / ses-transport
CakePHP transport for Amazon SES
Installs: 789
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 5
Forks: 1
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=5.3.0
- aws/aws-sdk-php: 2.*
- composer/installers: ~1.0
This package is auto-updated.
Last update: 2021-04-14 13:17:39 UTC
README
Transport to send email with Amazon AWS SES
Dependencies
- CakePHP 2.x
- "AWS SDK for PHP 2":https://github.com/aws/aws-sdk-php
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
- Copyright 2013 "Radig - Soluções em TI":http://www.radig.com.br
- Licensed under MIT (file attached).