aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/emails.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-13 20:43:41 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-13 20:43:41 +0200
commitfdca0f720707eb015b2150bd9228fdcc85e6ef3a (patch)
tree22c08e2ed309ce107dc65dc5d8d550e977637123 /pyaggr3g470r/emails.py
parentLoad MAILGUN_SMTP_SERVER env variable. (diff)
downloadnewspipe-fdca0f720707eb015b2150bd9228fdcc85e6ef3a.tar.gz
newspipe-fdca0f720707eb015b2150bd9228fdcc85e6ef3a.tar.bz2
newspipe-fdca0f720707eb015b2150bd9228fdcc85e6ef3a.zip
trying to send email with postmark
Diffstat (limited to 'pyaggr3g470r/emails.py')
-rw-r--r--pyaggr3g470r/emails.py23
1 files changed, 10 insertions, 13 deletions
diff --git a/pyaggr3g470r/emails.py b/pyaggr3g470r/emails.py
index 55ff4504..61851f22 100644
--- a/pyaggr3g470r/emails.py
+++ b/pyaggr3g470r/emails.py
@@ -5,7 +5,7 @@ import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
-import requests
+from postmark import PMMail
import log
import utils
@@ -71,19 +71,16 @@ def new_account_notification(user):
(conf.PLATFORM_URL + 'confirm_account/' + user.activation_key)
plaintext = utils.clear_string(html)
- r = requests.post("https://api.mailgun.net/v2/%s/messages" % conf.MAILGUN_DOMAIN,
- auth=("api", conf.MAILGUN_KEY),
- data={
- "from": conf.ADMIN_EMAIL,
- "to": user.email,
- "subject": "[pyAggr3g470r] Account activation",
- "text": plaintext,
- "html": html
- }
- )
- return r
+
+ message = PMMail(api_key = conf.POSTMARK_API_KEY,
+ subject = "[pyAggr3g470r] Account activation",
+ sender = conf.ADMIN_EMAIL,
+ to = user.email,
+ text_body = plaintext)
+
+ message.send()
except Exception as e:
- print str(e)
+ raise e
bgstack15