We have written python code that sends emails. Bcc is an array of 2 emails and there is no cc. Even though there is no CC, the BCC emails are added as CC.
Here is the code:
bcc = "x, y"
response = self.connection.send_email(
source = sender_mail,
subject = subject,
body = None,
to_addresses = to,
cc_addresses=None,
bcc_addresses=bcc,
format='html',
reply_addresses = None,
return_path = None,
text_body=None,
html_body=html
)
Any idea how we can solve this?