Change subject to let user know the email is forwarded from SL

This commit is contained in:
Son NK 2019-11-19 00:16:57 +01:00
parent 38d9654624
commit a28c90f110
1 changed files with 6 additions and 0 deletions

View File

@ -126,6 +126,12 @@ class MailHandler:
except ValueError:
# the header exists already
msg.replace_header("Reply-To", forward_email.reply_email)
# modify subject to let user know the email is forwarded from SL
original_subject = msg["Subject"]
msg.replace_header(
"Subject",
f"Forwarded by SimpleLogin. Subject: {original_subject}. From: {website_email}",
)
LOG.d(
"Send mail from %s to %s, mail_options %s, rcpt_options %s ",