2017 © Pedro Peláez
 

library swiftmailer-transport-aws-ses

Add AWS SES support to Swiftmailer

image

martijngastkemper/swiftmailer-transport-aws-ses

Add AWS SES support to Swiftmailer

  • Monday, October 19, 2015
  • by martijngastkemper
  • Repository
  • 1 Watchers
  • 0 Stars
  • 90 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 29 Forks
  • 0 Open issues
  • 6 Versions
  • 1 % Grown

The README.md

What is it?

It's a simple transport for use with Swiftmailer to send mail over AWS SES., (*1)

As on December 2011, Amazon provides an SMTP interface to SES, so you may prefer to use Swiftmailer's built in SMTP transport., (*2)

Where do I put it?

Whereever you want, so long as you include it in your code., (*3)

Otherwise Swift can autoload it if you put the files in this directory:, (*4)

[swift library root]/classes/Swift/AWSTransport.php

How do I use it?

Like any other Swiftmailer transport:, (*5)

//Create the Transport
$transport = Swift_AWSTransport::newInstance( 'AWS_ACCESS_KEY', 'AWS_SECRET_KEY' );

//Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);

$mailer->send($message);

Symfony1.X configuration

```yaml
# app/frontend/config/factories.yml

all:
  mailer:
    class: sfMailer
    param:
      transport:
        class:          Swift_AWSTransport
        accessKeyId:    your-access-key
        secretKey:      Y0uR-$3cr3t5-k3y
        debug:          false
        endpoint:       'https://email.us-east-1.amazonaws.com/' # make sure to use trailing slash !
```

How do I get the message ID on send?

You need to register the Swift_Events_ResponseReceivedListener plugin with a callback. See example/responseListener.php for details., (*6)

$transport->registerPlugin(
    new Swift_Events_ResponseReceivedListener( function ( $message, $body ) {
        echo sprintf( "Message-ID %s.\n", $body->SendRawEmailResult->MessageId );
    })
);

Swiftmailer Version

Please note that some users have had issues with older versions of Swiftmailer., (*7)

Versions 4.1.3 and up should work fine., (*8)

Credits

  • @jmhobbs - Original development
  • @bertrandom - Bug fix
  • @themouette - Plugins & Symfony compatible
  • @jonatrey & @faz - Debugging and Testing issue #13
  • @casconed - Made debug function more robust, issue #21
  • @martijngastkemper - Added responseReceived event to get message id from AWS

The Versions

19/10 2015

dev-event-dispatcher

dev-event-dispatcher

Add AWS SES support to Swiftmailer

  Sources   Download

MIT

The Requires

 

email swiftmailer aws ses

04/02 2015

dev-master

9999999-dev

Add AWS SES support to Swiftmailer

  Sources   Download

MIT

The Requires

 

email swiftmailer aws ses

24/11 2014

dev-aws-sdk

dev-aws-sdk

Add AWS SES support to Swiftmailer

  Sources   Download

MIT

The Requires

 

email swiftmailer aws ses

13/11 2014

0.9.2

0.9.2.0

Add AWS SES support to Swiftmailer

  Sources   Download

MIT

The Requires

 

email swiftmailer aws ses

19/02 2014

0.9.1

0.9.1.0

Add AWS SES support to Swiftmailer

  Sources   Download

MIT

The Requires

 

email swiftmailer aws ses

30/10 2012

0.9.0

0.9.0.0

Add AWS SES support to Swiftmailer

  Sources   Download

MIT

The Requires

 

email swiftmailer aws ses