Commit f7a9cd80971c4aae772ee723a15ef271890984ff
1 parent
0fe791ce
Exists in
master
and in
5 other branches
alteração no setting para encaminhar o email #58
Showing
1 changed file
with
4 additions
and
2 deletions
Show diff stats
amadeus/settings.py
... | ... | @@ -185,11 +185,13 @@ MESSAGE_TAGS = { |
185 | 185 | |
186 | 186 | #Send email for forgot Password |
187 | 187 | EMAIL_USE_TLS = True |
188 | +DEFAULT_FROM_EMAIL = 'test@gmail.com' | |
189 | +SERVER_EMAIL = 'test@gmail.com' | |
188 | 190 | EMAIL_HOST = 'smtp.gmail.com' |
189 | -EMAIL_PORT = 25 | |
191 | +EMAIL_PORT = 587 | |
190 | 192 | EMAIL_HOST_USER = 'amadeusteste@gmail.com' |
191 | 193 | EMAIL_HOST_PASSWORD = 'amadeusteste' |
192 | -# EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' | |
194 | +EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' | |
193 | 195 | |
194 | 196 | #s3direct |
195 | 197 | ... | ... |