Skip to content

Commit 0692f31

Browse files
Updated def build_personalization
Corrected a typo.
1 parent 86708c7 commit 0692f31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/helpers/mail/mail_example.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def build_personalization(personalization):
3030
mock_personalization.add_to(cc_addr)
3131

3232
for bcc_addr in personalization['bcc_list']:
33-
mock_personalization.add_bc(bcc_addr)
33+
mock_personalization.add_bcc(bcc_addr)
3434

3535
for header in personalization['headers']:
3636
mock_personalization.add_header(header)
@@ -216,4 +216,4 @@ def send_kitchen_sink():
216216
send_hello_email()
217217

218218
# this will only send an email if you set SandBox Mode to False
219-
send_kitchen_sink()
219+
send_kitchen_sink()

0 commit comments

Comments
 (0)