Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update email_builder.py add message_ID, references, in_reply_to in self.message #266

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions msg_parser/email_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@ def build_email(self):

# Setting Message ID
self.message.set_param("Message-ID", self.msg_obj.message_id)

message_ID = self.msg_obj.message_id
if message_ID:
self.message["Message-ID"] = str(message_ID)

references = self.msg_obj.header_dict.get("References")
if references:
self.message["References"] = str(references)

in_reply_to = self.msg_obj.header_dict.get("In-Reply-To")
if in_reply_to:
self.message["In-Reply-To"] = str(in_reply_to)

# Encoding for unicode subject
self.message["Subject"] = Header(self.msg_obj.subject, charset="UTF-8")
Expand Down
5 changes: 2 additions & 3 deletions msg_parser/msg_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,8 @@ def get_email_mime_content(self):

def save_email_file(self, file_path, file_name=None):
email_obj = EmailFormatter(self)
email_obj.save_file(file_path, file_name)
return True

return email_obj.save_file(file_path)

def _set_properties(self):
property_values = self._message.properties

Expand Down