Skip to content

Commit

Permalink
fix: use DEFAULT_EMIAL_FROM not hard-coded e-mail
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Sep 5, 2024
1 parent fead6d5 commit 22fff48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/tup-cms/src/apps/portal/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def send_confirmation_email(form_name, form_data):
send_mail(
f"TACC Form Submission Received: {form_name}",
email_body,
"[email protected]",
settings.DEFAULT_FROM_EMAIL,
[form_data["email"]],
html_message=email_body)

Expand Down

0 comments on commit 22fff48

Please sign in to comment.