fetch emails through Zero MQ

This commit is contained in:
Yax 2018-01-16 18:49:19 +01:00
parent dd7ab75460
commit 2c5b63fcf5
10 changed files with 62 additions and 27 deletions

View file

@ -14,7 +14,6 @@ from app.models.reader import Reader
from app.models.report import Report
from app.models.comment import Comment
from app.helpers.hashing import md5
import requests
import json
import config
import PyRSS2Gen
@ -392,7 +391,8 @@ def mail(to_email, subject, message):
'subject': subject,
'content': message
}
r = requests.post(config.MAIL_URL, data=json.dumps(msg), headers=headers)
# do something smart here
# r = requests.post(config.MAIL_URL, data=json.dumps(msg), headers=headers)
if r.status_code in (200, 201):
logger.debug('Email for %s posted' % to_email)
else: