aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/emails.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r/emails.py')
-rw-r--r--pyaggr3g470r/emails.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/pyaggr3g470r/emails.py b/pyaggr3g470r/emails.py
index b60a9867..65af36ad 100644
--- a/pyaggr3g470r/emails.py
+++ b/pyaggr3g470r/emails.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# pyAggr3g470r - A Web based news aggregator.
-# Copyright (C) 2010-2014 Cédric Bonhomme - http://cedricbonhomme.org/
+# Copyright (C) 2010-2014 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://bitbucket.org/cedricbonhomme/pyaggr3g470r/
#
@@ -130,12 +130,6 @@ def information_message(subject, plaintext):
for i in xrange(0, len(emails), 19):
send(to=conf.NOTIFICATION_EMAIL, bcc=", ".join(emails[i:i+19]), subject=subject, plaintext=plaintext)
- #for user in users:
- #try:
- #send(user=user, subject=subject, plaintext=plaintext)
- #except:
- #continue
-
def new_account_notification(user):
"""
Account creation notification.
bgstack15