aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-19 22:35:13 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-19 22:35:13 +0200
commitca8b2d6eed4add2197ceaa4a13fa534cb8e6eccb (patch)
tree77eaec9837e0306ba8c38103bb9acdafcd453505 /pyaggr3g470r
parentRemoved 'Add a new feed' button. (diff)
downloadnewspipe-ca8b2d6eed4add2197ceaa4a13fa534cb8e6eccb.tar.gz
newspipe-ca8b2d6eed4add2197ceaa4a13fa534cb8e6eccb.tar.bz2
newspipe-ca8b2d6eed4add2197ceaa4a13fa534cb8e6eccb.zip
Improved email notifications.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/emails.py72
1 files changed, 45 insertions, 27 deletions
diff --git a/pyaggr3g470r/emails.py b/pyaggr3g470r/emails.py
index 9507d3ae..d11fd16e 100644
--- a/pyaggr3g470r/emails.py
+++ b/pyaggr3g470r/emails.py
@@ -65,41 +65,59 @@ def send_email(mfrom, mto, feed, article):
#
# Notifications
#
-def new_account_notification(user):
- if conf.ON_HEROKU:
- try:
- plaintext = """Hello,\n\nYour account has been created. Click on the following link to confirm it:\n%s\n\nSee you,""" % \
- (conf.PLATFORM_URL + 'confirm_account/' + user.activation_key)
+def send_heroku(user, subject, plaintext):
+ """
+ Send an email on Heroku via Postmark.
+ """
+ try:
+ message = PMMail(api_key = conf.POSTMARK_API_KEY,
+ subject = subject,
+ sender = conf.ADMIN_EMAIL,
+ to = user.email,
+ text_body = plaintext)
+ message.send()
+ except Exception as e:
+ pyaggr3g470r_log.error(str(e))
+ raise e
- message = PMMail(api_key = conf.POSTMARK_API_KEY,
- subject = "[pyAggr3g470r] Account activation",
- sender = conf.ADMIN_EMAIL,
- to = user.email,
- text_body = plaintext)
+def information_message(subject, plaintext):
+ """
+ Send an information message to the users of the platform.
+ """
+ from pyaggr3g470r.models import User
+ users = User.query.all()
+ emails = [user.email for user in users]
+ if conf.ON_HEROKU:
+ # Postmark has a limit of twenty recipients per message in total.
+ for i in xrange(0, len(emails), 20):
+ send_heroku(", ".join(emails[i:i+20]), subject, plaintext)
+ else:
+ pass
- message.send()
- except Exception as e:
- raise e
+def new_account_notification(user):
+ """
+ Account creation notification.
+ """
+ plaintext = """Hello,\n\nYour account has been created. Click on the following link to confirm it:\n%s\n\nSee you,""" % \
+ (conf.PLATFORM_URL + 'confirm_account/' + user.activation_key)
+ if conf.ON_HEROKU:
+ send_heroku(user, "[pyAggr3g470r] Account creation", plaintext)
else:
pass
def new_account_activation(user):
- if conf.ON_HEROKU:
- try:
- plaintext = """Hello,\n\nYour account has been activated. You can now connect to the platform:\n%s\n\nSee you,""" % \
+ """
+ Account activation notification.
+ """
+ plaintext = """Hello,\n\nYour account has been activated. You can now connect to the platform:\n%s\n\nSee you,""" % \
(conf.PLATFORM_URL)
-
- 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:
- raise e
+ if conf.ON_HEROKU:
+ send_heroku(user, "[pyAggr3g470r] Account activated", plaintext)
else:
pass
def new_article_notification(user, feed, article):
- send_email(conf.ADMIN_EMAIL, user.email, feed, article) \ No newline at end of file
+ if conf.ON_HEROKU:
+ pass
+ else:
+ send_email(conf.ADMIN_EMAIL, user.email, feed, article) \ No newline at end of file
bgstack15