Skip to content

Commit

Permalink
feat(dev): email transfer (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
eugena committed Jul 17, 2023
1 parent 96d07a7 commit db73bb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,8 @@
# Optional SMTP authentication information for EMAIL_HOST.
EMAIL_HOST_USER = env("DJANGO_EMAIL_HOST_USER", default="")
EMAIL_HOST_PASSWORD = env("DJANGO_EMAIL_HOST_PASSWORD", default="")
EMAIL_USE_TLS = env("DJANGO_EMAIL_USE_TLS", default="")
EMAIL_USE_TLS = env("DJANGO_EMAIL_USE_TLS", default=False)
EMAIL_USE_SSL = env("DJANGO_EMAIL_USE_SSL", default=False)
EMAIL_SUBJECT_PREFIX = "ацеста. "

# ADMIN
Expand Down

0 comments on commit db73bb9

Please sign in to comment.