Skip to content

Commit

Permalink
chore(settings.py): add DEFAULT_FROM_EMAIL configuration to set the d…
Browse files Browse the repository at this point in the history
…efault sender email address for the application's emails (#640)
  • Loading branch information
mabdullahabid authored Mar 8, 2024
1 parent 8809dcb commit 0c94985
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,10 @@
EMAIL_PORT = 587
EMAIL_USE_TLS = True

DEFAULT_FROM_EMAIL = env.str(
"DEFAULT_FROM_EMAIL", "{{cookiecutter.project_name}} Support <support@{{cookiecutter.custom_domain}}>"
)


# AWS S3 config
AWS_ACCESS_KEY_ID = env.str("AWS_ACCESS_KEY_ID", "")
Expand Down

0 comments on commit 0c94985

Please sign in to comment.