From f90214295a7a3c10139d1e001e49681201a0d43e Mon Sep 17 00:00:00 2001 From: Eduardo Edson Batista Cordeiro Alves Date: Wed, 13 Jan 2016 13:16:30 -0200 Subject: [PATCH] add setting to can send email --- sapl/settings.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sapl/settings.py b/sapl/settings.py index cbd304732..78eedfa74 100644 --- a/sapl/settings.py +++ b/sapl/settings.py @@ -115,6 +115,12 @@ DATABASES = { } } +EMAIL_USE_TLS = True +EMAIL_HOST = '' +EMAIL_HOST_USER = '' +EMAIL_HOST_PASSWORD = '' +EMAIL_PORT = 587 + # Internationalization # https://docs.djangoproject.com/en/1.8/topics/i18n/ LANGUAGE_CODE = 'pt-br'