Skip to content

Commit

Permalink
Merge branch '6.2' into 6.3
Browse files Browse the repository at this point in the history
* 6.2:
  [HttpClient] fix proxied redirects in curl client
  Fix serializer normalize attribute context
  Bump Symfony version to 6.2.10
  Update VERSION for 6.2.9
  Update CHANGELOG for 6.2.9
  [Intl] Update the ICU data to 73.1
  [Console] Restoring the ability to output unicode text to the Win10 console
  [Mailer] Add brifge documentation
  • Loading branch information
nicolas-grekas committed Apr 14, 2023
2 parents d620a4f + c49c0ef commit 082e163
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@ 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
---------

Expand Down

0 comments on commit 082e163

Please sign in to comment.