Amazon-SES
    
    
  
  
  
view release on metacpan or search on metacpan
lib/Amazon/SES.pm view on Meta::CPAN
        Encoding => 'base64'
    );
    $ses = Amazon::SES->new(....);
    $r = $ses->send($msg);
    unless ( $r->is_success ) {
        die $r->error_message;
    }
If you don't have MIME::Entity instance handy you may use the following arguments to have AWS SES build the message for you (bold entries are required): C<From>, B<To>, B<Subject>, B<Body>, C<Body_html>, C<ReturnPath>. To send e-mail to multiple emai...
If C<From> is missing it defaults to your default e-mail given to C<new()>. Remember: this must be a verified e-mail. Example:
    $r = $ses->send(
        from    => '[your email address]',
        to      => '[destination email address]',
        subject => 'Hello World'
        body    => 'Hello World'
    );
    unless ( $r->is_success ) {
( run in 0.326 second using v1.01-cache-2.11-cpan-5dc5da66d9d )