added missing entry for dealing with bcc
This commit is contained in:
parent
0a21e2ab4d
commit
6e96188085
1 changed files with 1 additions and 0 deletions
|
@ -40,6 +40,7 @@ def mail(subject='Ansible error mail', sender=None, to=None, cc=None, bcc=None,
|
||||||
b_sender = to_bytes(sender)
|
b_sender = to_bytes(sender)
|
||||||
b_to = to_bytes(to)
|
b_to = to_bytes(to)
|
||||||
b_cc = to_bytes(cc)
|
b_cc = to_bytes(cc)
|
||||||
|
b_bcc = to_bytes(bcc)
|
||||||
b_subject = to_bytes(subject)
|
b_subject = to_bytes(subject)
|
||||||
b_body = to_bytes(body)
|
b_body = to_bytes(body)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue