diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-20 08:23:26 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-20 08:23:26 +0200 |
commit | 4aa78f383f256ab5a95c91cfbd276f56f7dc0d80 (patch) | |
tree | 525fac8f890a076e5fa899dd51968b60240fe657 | |
parent | Real FFix (diff) | |
download | newspipe-4aa78f383f256ab5a95c91cfbd276f56f7dc0d80.tar.gz newspipe-4aa78f383f256ab5a95c91cfbd276f56f7dc0d80.tar.bz2 newspipe-4aa78f383f256ab5a95c91cfbd276f56f7dc0d80.zip |
fix for postmark
-rw-r--r-- | pyaggr3g470r/emails.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyaggr3g470r/emails.py b/pyaggr3g470r/emails.py index 77546138..42d0fd01 100644 --- a/pyaggr3g470r/emails.py +++ b/pyaggr3g470r/emails.py @@ -75,6 +75,7 @@ def send_heroku(user=None, bcc="", subject="", plaintext=""): sender = conf.ADMIN_EMAIL, text_body = plaintext) if bcc != "": + message.to = conf.ADMIN_EMAIL message.bcc = bcc elif bcc == "": message.to = user.email |