Skip to content

Commit

Permalink
Documentation for the new email security setting
Browse files Browse the repository at this point in the history
  • Loading branch information
ianroberts committed May 8, 2024
1 parent 1546530 commit 96f2886
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/docs/developerguide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,13 @@ to the list of environment variables:
```bash
DJANGO_EMAIL_BACKEND='django.core.mail.backends.smtp.EmailBackend'
DJANGO_EMAIL_HOST='myserver.com'
DJANGO_EMAIL_PORT=22
DJANGO_EMAIL_PORT=25
DJANGO_EMAIL_HOST_USER='username'
DJANGO_EMAIL_HOST_PASSWORD='password'
DJANGO_EMAIL_SECURITY=tls
# tls = STARTTLS, typically on port 25 or 587
# ssl = TLS-on-connect, typically on port 465
# none (or omitted) = no encryption
```

#### E-mail using Google API
Expand Down

0 comments on commit 96f2886

Please sign in to comment.