Resolve "Set “Reply-To” in diagram comment notification mails."
This is a fairly simple change. We must replace the call to django.core.mail.send_mail()
with the instantiation of an EmailMessage
object and call to its send()
method, because send_mail()
doesn't let us specify extra headers (EmailMessage
has a separate reply_to
attribute.)
Closes #40 (closed)