2
0
mirror of https://github.com/inventree/inventree-docs.git synced 2025-06-12 02:05:29 +00:00

Add docs for email backend

This commit is contained in:
Oliver Walters
2021-02-16 21:29:53 +11:00
parent 68103f534b
commit 3db774d1fe
2 changed files with 42 additions and 1 deletions

View File

@ -56,6 +56,29 @@ currencies:
- NZD
- USD
# Email backend configuration
# Ref: https://docs.djangoproject.com/en/dev/topics/email/
# Available options:
# host: Email server host address
# port: Email port
# username: Account username
# password: Account password
# prefix: Email subject prefix
# tls: Enable TLS support
# ssl: Enable SSL support
# Alternatively, these options can all be set using environment variables
# Refer to the InvenTree documentation for more information
email:
host: ''
port: 25
username: ''
password: ''
prefix: '[InvenTree] '
tls: False
ssl: False
# Set debug to False to run in production mode
debug: True