1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

added missing entry for dealing with bcc

This commit is contained in:
Brian Coca 2015-10-01 15:14:20 -04:00
parent 0a21e2ab4d
commit 6e96188085

View file

@ -40,6 +40,7 @@ def mail(subject='Ansible error mail', sender=None, to=None, cc=None, bcc=None,
b_sender = to_bytes(sender)
b_to = to_bytes(to)
b_cc = to_bytes(cc)
b_bcc = to_bytes(bcc)
b_subject = to_bytes(subject)
b_body = to_bytes(body)