From 1cd9956ee79009476c6969a9097584a549e4e1a6 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 20 May 2014 08:00:43 +0200 Subject: Fix --- pyaggr3g470r/emails.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyaggr3g470r/emails.py') diff --git a/pyaggr3g470r/emails.py b/pyaggr3g470r/emails.py index 504e5d29..2bee64cf 100644 --- a/pyaggr3g470r/emails.py +++ b/pyaggr3g470r/emails.py @@ -72,7 +72,7 @@ def send_heroku(user=None, bcc="", subject="", plaintext=""): try: message = PMMail(api_key = conf.POSTMARK_API_KEY, subject = subject, - message.to = user.email, + to = user.email, sender = conf.ADMIN_EMAIL, text_body = plaintext) if bcc != "" and None == user: -- cgit