Skip to content
Snippets Groups Projects
Commit f01de302 authored by jan.bednarik's avatar jan.bednarik
Browse files

SMTP settings

parent a9c59151
Branches
No related tags found
No related merge requests found
...@@ -186,8 +186,10 @@ TINYMCE_DEFAULT_CONFIG = { ...@@ -186,8 +186,10 @@ TINYMCE_DEFAULT_CONFIG = {
# Custom settings Registration # Custom settings Registration
ACCOUNT_ACTIVATION_DAYS = 7 ACCOUNT_ACTIVATION_DAYS = 7
EMAIL_HOST = "mail2.playzone.cz" EMAIL_HOST = env.str("SMTP_SERVER", default="mail2.playzone.cz")
EMAIL_PORT = 587 EMAIL_PORT = 587
EMAIL_USE_TLS = True EMAIL_USE_TLS = True
EMAIL_HOST_USER = env.str("SMTP_USER", default="") EMAIL_HOST_USER = env.str("SMTP_USER", default="")
EMAIL_HOST_PASSWORD = env.str("SMTP_PASSWORD", default="") EMAIL_HOST_PASSWORD = env.str("SMTP_PASSWORD", default="")
DEFAULT_FROM_EMAIL = "sifrovacka@pirati.cz"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment