Amazon SES – Emails In Cloud

Amazon Simple Email Service (Amazon SES) is a highly scalable and cost-effective bulk and transactional email-sending service for businesses and developers. Amazon SES eliminates the complexity and expense of building an in-house email solution or licensing, installing, and operating a third-party email service. The service integrates with other AWS services, making it easy to send emails from applications being hosted on services such as Amazon EC2. With Amazon SES there is no long-term commitment, minimum spend or negotiation required – businesses can utilize a free usage tier and after that enjoy low fees for the number of emails sent plus data transfer fees.

AWS developers can download Amazon-SES-Mailer-PHP from here

First, make sure this library and the PEAR modules are in your include_path

<?php
require_once('AmazonSESMailer.php');

// Create a mailer class with your Amazon ID/Secret in the constructor
$mailer = new AmazonSESMailer('your id', 'your secret');

// Then use this object like you would use PHPMailer normally!
$mailer->AddAddress('[email protected]');
$mailer->SetFrom('[email protected]');
$mailer->Subject = 'Sent from Amazon SES';
$mailer->MsgHtml('This is a test');
$mailer->Send();
?>

Source
https://github.com/geoloqi/Amazon-SES-Mailer-PHP
http://aws.amazon.com/developertools/Amazon-SES
http://aws.amazon.com/php/

➡ Lack of clarity ❓ -> Confusion 😳 -> Inaction 😈 -> Failure 🙁
➡ Concentrate 😯 -> Observe 🙄 -> Imagine 💡 -> Launch 🙂