diff options
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r-- | pyaggr3g470r/emails.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/emails.py b/pyaggr3g470r/emails.py index 65af36ad..26fece56 100644 --- a/pyaggr3g470r/emails.py +++ b/pyaggr3g470r/emails.py @@ -108,7 +108,7 @@ def send_postmark(to="", bcc="", subject="", plaintext=""): message.to = conf.NOTIFICATION_EMAIL message.bcc = bcc elif bcc == "": - message.to = recipients + message.to = to message.send() except Exception as e: logger.exception("send_postmark raised:") |