Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/symfony/amazon-mailer
- Owner: symfony
- License: mit
- Created: 2019-03-30T11:58:23.000Z (over 5 years ago)
- Default Branch: 7.1
- Last Pushed: 2024-10-27T15:24:38.000Z (about 2 months ago)
- Last Synced: 2024-10-29T15:15:05.382Z (about 2 months ago)
- Topics: component, php, symfony, symfony-component
- Language: PHP
- Homepage: https://symfony.com/mailer
- Size: 204 KB
- Stars: 70
- Watchers: 7
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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)