fix(settings): Allow specifying the EMAIL_PORT
This commit is contained in:
parent
5019b89ef2
commit
97e3ae9702
1 changed files with 1 additions and 0 deletions
|
@ -120,6 +120,7 @@ DEFAULT_FROM_EMAIL = credentials["FROM_EMAIL"]
|
|||
EMAIL_HOST = credentials.get("EMAIL_HOST", "localhost")
|
||||
EMAIL_HOST_PASSWORD = credentials.get("EMAIL_HOST_PASSWORD", "")
|
||||
EMAIL_HOST_USER = credentials.get("EMAIL_HOST_USER", "")
|
||||
EMAIL_PORT = credentials.get_json("EMAIL_PORT", 465)
|
||||
EMAIL_USE_SSL = credentials.get("EMAIL_USE_SSL", False)
|
||||
SERVER_EMAIL = credentials["SERVER_EMAIL"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue