2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 04:55:44 +00:00

Support for email settings

This commit is contained in:
Oliver Walters
2021-02-16 21:30:20 +11:00
parent 72f83771f1
commit fb5a94a778
2 changed files with 68 additions and 0 deletions

View File

@ -63,6 +63,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
# Use the environment variable INVENTREE_DEBUG
debug: True