1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-22 14:29:36 +02:00

Update email.md

Removing the single quotes allow SMTP to work -- it did not work otherwise. Also, [Google recommends TLS over SSL](https://support.google.com/a/answer/2520500?sjid=7564827219172741277-NA)
This commit is contained in:
Patrick McGuire 2025-01-27 09:38:59 -05:00 committed by GitHub
parent f7e183f9a3
commit 697851e210
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,14 +13,14 @@ environment:
```yaml
environment:
- EMAIL_BACKEND='email'
- EMAIL_HOST='smtp.gmail.com'
- EMAIL_USE_TLS=False
- EMAIL_BACKEND=email
- EMAIL_HOST=smtp.gmail.com
- EMAIL_USE_TLS=True
- EMAIL_PORT=587
- EMAIL_USE_SSL=True
- EMAIL_HOST_USER='user'
- EMAIL_HOST_PASSWORD='password'
- DEFAULT_FROM_EMAIL='user@example.com'
- EMAIL_USE_SSL=False
- EMAIL_HOST_USER=user
- EMAIL_HOST_PASSWORD=password
- DEFAULT_FROM_EMAIL=user@example.com
```
## Customizing Emails