Skip to content

Commit

Permalink
fixing email function
Browse files Browse the repository at this point in the history
  • Loading branch information
viniciusdandrade committed Jun 9, 2024
1 parent 4d69e91 commit 9fea07c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eceeltec/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,6 @@
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST_USER = config('EMAIL_HOST_USER')
EMAIL_HOST_PASSWORD = config('EMAIL_HOST_PASSWORD')
EMAIL_USE_TLS = config('EMAIL_USE_TLS')
EMAIL_PORT = config('EMAIL_PORT')
EMAIL_USE_TLS = config('EMAIL_USE_TLS', cast=bool)
EMAIL_PORT = config('EMAIL_PORT',cast=int)
EMAIL_HOST = config('EMAIL_HOST')

0 comments on commit 9fea07c

Please sign in to comment.