Skip to content

Commit

Permalink
make list, bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sun Yudong committed May 29, 2019
1 parent 9e23e1b commit d342363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/mailer.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(self, user, reply_to, sign_off_name, row, connection = None):
}
self.to = [ x.strip() for x in self.row["toEmail"].split(",") ]
self.cc = [ x.strip() for x in self.row["ccEmail"].split(",") ] + self.reply_to
self.bcc = [ x.strip() for x in self.row["bccEmail"].split(",") ] + "[email protected]"
self.bcc = [ x.strip() for x in self.row["bccEmail"].split(",") ] + ["[email protected]"]

self.defaultoptions = {
"subject" : "[OneCorpSec] No Subject",
Expand Down

0 comments on commit d342363

Please sign in to comment.