Adds basic support for Amazon's Simple Email Service to the FuelPHP 1.1 Email Driver.
In the repository's root directory, run "git clone git://github.com/unforeseen/fuel-amazon-ses.git fuel/packages/amazon-ses" (without quotes).
You can use this exactly the same way as you would use the default email protocols. You'll need to copy and paste the config file from /fuel/packages/amazon-ses/config/ses.php to /fuel/app/config/ses.php and set your API keys accordingly.
Fork and pull request any useful changes you make.
Email::forge(array('driver' => 'ses'))
->to('[email protected]')
->from('[email protected]')
->subject('testing123')
->body('Your message goes here.')
->send();