Skip to content

Commit

Permalink
reply_to should be a list or tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
jsjiang committed Oct 31, 2024
1 parent 4aefe91 commit a52fe22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impl/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def contact(request):
body=message,
from_email=django.conf.settings.SERVER_EMAIL,
to=emails,
reply_to=P['email'],
reply_to=[P['email']],
)
email.send(fail_silently=False)
# 'extra_tags' used for recording a Google Analytics event
Expand Down

0 comments on commit a52fe22

Please sign in to comment.