Add EMAIL settings

This commit is contained in:
PCoder 2019-02-24 19:28:09 +01:00
parent acff3fc592
commit 0591a186d8
1 changed files with 4 additions and 0 deletions

View File

@ -50,6 +50,10 @@ DEBUG = config('DEBUG', default=False, cast=bool)
EMAIL_FROM_ADDRESS = config('EMAIL_FROM_ADDRESS')
EMAIL_HOST = config("EMAIL_HOST", default="localhost")
EMAIL_PORT = config("EMAIL_PORT", default=25, cast=int)
EMAIL_USE_TLS = config("EMAIL_USE_TLS", default=True, cast=bool)
ALLOWED_HOSTS = config('ALLOWED_HOSTS', cast=Csv())
INSTALLED_APPS = [