Commit d8dda4c3 authored by Michal Čihař's avatar Michal Čihař

Do not set sender when sending from weblate, set reply-to instead

parent ce5ef53c
......@@ -91,7 +91,9 @@ def mail_admins_sender(subject, message, sender, fail_silently=False,
mail = EmailMultiAlternatives(
u'%s%s' % (settings.EMAIL_SUBJECT_PREFIX, subject),
message, sender, [a[1] for a in settings.ADMINS],
message,
to=[a[1] for a in settings.ADMINS],
headers={'Reply-To': sender},
connection=connection
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment