-
-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added instructions for SES email configuration (#622)
@cigan1 (Yonatan Rybinski) * Added instructions for SES * Fixed domain * Changed the name to Amazon SES not AWS SES * Removed the extra URL
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,6 +53,22 @@ Configuration example for Gmail: | |
- [email protected] | ||
``` | ||
|
||
### Amazon SES | ||
|
||
Configuration example for [Amazon SES](https://aws.amazon.com/ses/) (us-east-1 region): | ||
``` | ||
- SMTP_HOST=email-smtp.us-east-1.amazonaws.com | ||
- SMTP_PORT=465 | ||
- SMTP_TLS=true | ||
- SMTP_USERNAME=access_key_id | ||
- SMTP_PASSWORD=secret_access_key | ||
- [email protected] | ||
``` | ||
|
||
A domain or an email that will be used in `AUTH_EMAIL_FROM` or `NOTIFY_EMAIL_FROM` must first be [verified](https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domain-procedure.html). | ||
|
||
[SMTP Credentials](https://docs.aws.amazon.com/ses/latest/DeveloperGuide/smtp-credentials.html) must first be obtained from [Amazon SES Console](https://console.aws.amazon.com/ses/home?region=us-east-1#smtp-settings:): | ||
|
||
## Setup email authentication | ||
|
||
|