Fixes SMTP URI documentation

This commit is contained in:
Marcos Peña 2022-04-08 16:11:09 +02:00 committed by Georg Krause
commit b8f0811332
No known key found for this signature in database
GPG key ID: 2970D504B2183D22
3 changed files with 7 additions and 6 deletions

View file

@ -335,9 +335,9 @@ SMTP configuration for sending e-mails. Possible values:
On a production instance, you'll usually want to use an external SMTP server:
- ``EMAIL_CONFIG=smtp://user@:password@youremail.host:25``
- ``EMAIL_CONFIG=smtp+ssl://user@:password@youremail.host:465``
- ``EMAIL_CONFIG=smtp+tls://user@:password@youremail.host:587``
- ``EMAIL_CONFIG=smtp://user:password@youremail.host:25``
- ``EMAIL_CONFIG=smtp+ssl://user:password@youremail.host:465``
- ``EMAIL_CONFIG=smtp+tls://user:password@youremail.host:587``
.. note::