Merge pull request #804 from samitainio/patch-1

new: Add Blind Carbon Copy (bcc) headers
pull/805/head
Alexandre Dulaunoy 2021-11-01 15:16:04 +01:00 committed by GitHub
commit f0e46891db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -295,6 +295,9 @@ class EMailObject(AbstractMISPObjectGenerator):
if "Reply-To" in message:
self.__add_emails("reply-to", message["reply-to"])
if "Bcc" in message:
self.__add_emails("bcc", message["Bcc"])
if "Cc" in message:
self.__add_emails("cc", message["Cc"])