From 0692f31f89fdd853596694abca6aba3ea09eb93b Mon Sep 17 00:00:00 2001 From: Anurag Anand Date: Fri, 15 Jun 2018 15:44:11 +0530 Subject: [PATCH] Updated def build_personalization Corrected a typo. --- examples/helpers/mail/mail_example.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/helpers/mail/mail_example.py b/examples/helpers/mail/mail_example.py index 93b3fb6a4..b2de7f0a0 100644 --- a/examples/helpers/mail/mail_example.py +++ b/examples/helpers/mail/mail_example.py @@ -30,7 +30,7 @@ def build_personalization(personalization): mock_personalization.add_to(cc_addr) for bcc_addr in personalization['bcc_list']: - mock_personalization.add_bc(bcc_addr) + mock_personalization.add_bcc(bcc_addr) for header in personalization['headers']: mock_personalization.add_header(header) @@ -216,4 +216,4 @@ def send_kitchen_sink(): send_hello_email() # this will only send an email if you set SandBox Mode to False -send_kitchen_sink() \ No newline at end of file +send_kitchen_sink()