Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/symfony/amazon-mailer

Symfony Amazon Mailer Bridge
https://github.com/symfony/amazon-mailer

component php symfony symfony-component

Last synced: 2 days ago
JSON representation

Symfony Amazon Mailer Bridge

Awesome Lists containing this project

README

        

Amazon Mailer
=============

Provides Amazon SES integration for Symfony Mailer.

Configuration example:

```env
# SMTP
MAILER_DSN=ses+smtp://USERNAME:PASSWORD@default?region=REGION&session_token=SESSION_TOKEN

# HTTP
MAILER_DSN=ses+https://ACCESS_KEY:SECRET_KEY@default?region=REGION&session_token=SESSION_TOKEN

# API
MAILER_DSN=ses+api://ACCESS_KEY:SECRET_KEY@default?region=REGION&session_token=SESSION_TOKEN
```

where:
- `ACCESS_KEY` is your Amazon SES access key id
- `SECRET_KEY` is your Amazon SES access key secret
- `REGION` is Amazon SES selected region (optional, default `eu-west-1`)
- `SESSION_TOKEN` is your Amazon SES session token (optional)

Resources
---------

* [Contributing](https://symfony.com/doc/current/contributing/index.html)
* [Report issues](https://github.com/symfony/symfony/issues) and
[send Pull Requests](https://github.com/symfony/symfony/pulls)
in the [main Symfony repository](https://github.com/symfony/symfony)