diff --git a/jdav_web/mailer/models.py b/jdav_web/mailer/models.py index f169498..0d4e429 100644 --- a/jdav_web/mailer/models.py +++ b/jdav_web/mailer/models.py @@ -141,7 +141,7 @@ class Message(models.Model): reply_to_unfiltered.extend([ml.email for ml in self.reply_to_email_address.all()]) # remove sending address from reply-to field (probably unnecessary since it's removed by # the mail provider anyways) - reply_to = [mail for mail in reply_to if mail != SENDING_ADDRESS ] + reply_to = [mail for mail in reply_to_unfiltered if mail != SENDING_ADDRESS ] try: success = send(self.subject, get_content(self.content), SENDING_ADDRESS,