浏览代码

fix case where reply-to is already present

Son NK 5 年之前
父节点
当前提交
8b67a13581
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      email_handler.py

+ 1 - 1
email_handler.py

@@ -114,7 +114,7 @@ class MailHandler:
 
                 # add custom header
                 msg.add_header("X-SimpleLogin-Type", "Forward")
-                msg.add_header("Reply-To", forward_email.reply_email)
+                msg.replace_header("Reply-To", forward_email.reply_email)
 
                 LOG.d(
                     "Send mail from %s to %s, mail_options %s, rcpt_options %s ",