Commit 6e961880 by Brian Coca

added missing entry for dealing with bcc

parent 0a21e2ab
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment