new: Add Blind Carbon Copy (bcc) headers

pull/804/head
Sami Tainio 2021-11-01 13:35:39 +02:00 committed by GitHub
parent f85ccb3e19
commit 8772c1fa5e
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"])