Skip to content

Commit

Permalink
Fix email settings
Browse files Browse the repository at this point in the history
  • Loading branch information
netoxico committed Apr 15, 2016
1 parent a877d21 commit 4606b8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion djangomx/djangomx/settings/common.py
Expand Up @@ -161,7 +161,7 @@
}
}

DEFAULT_FROM_EMAIL = 'Django Mexico <no-reply@django.mx>'
DEFAULT_FROM_EMAIL = 'Django Mexico <noreply@django.mx>'

# sorl-thumbnail settings
THUMBNAIL_DEBUG = True
Expand Down
2 changes: 2 additions & 0 deletions djangomx/djangomx/settings/production.py
Expand Up @@ -4,3 +4,5 @@
TEMPLATE_DEBUG = DEBUG

EMAIL_HOST = SECRETS.get('email_host', '')
EMAIL_HOST_USER = SECRETS.get('email_host_user', '')
EMAIL_HOST_PASSWORD = SECRETS.get('email_host_password', '')

0 comments on commit 4606b8c

Please sign in to comment.