Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/submit_email/bin/send_mass_email.py

Issue 29326140: Isssue 3020 - Add a script to disaptch mass emails (Closed)
Patch Set: Get template in advance Created Sept. 8, 2015, 6:19 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sitescripts/submit_email/bin/__init__.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/submit_email/bin/send_mass_email.py
===================================================================
new file mode 100644
--- /dev/null
+++ b/sitescripts/submit_email/bin/send_mass_email.py
@@ -0,0 +1,42 @@
+# coding: utf-8
+
+# This file is part of the Adblock Plus web scripts,
+# Copyright (C) 2006-2015 Eyeo GmbH
+#
+# Adblock Plus is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3 as
+# published by the Free Software Foundation.
+#
+# Adblock Plus is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+
+import sys
+import argparse
+import logging
+
+from sitescripts.utils import get_template, sendMail
+
+parser = argparse.ArgumentParser(description='Renders the given email template '
+ 'and dispatches emails to the '
+ 'addresses given on stdin')
+parser.add_argument('template')
+parser.add_argument('--log-level', default='INFO')
+
+if __name__ == '__main__':
+ args = parser.parse_args()
+ logging.basicConfig(level=args.log_level)
+ template = get_template(args.template, False)
+
+ for recipient in sys.stdin:
+ recipient = recipient.strip()
+ try:
+ sendMail(template, {'recipient': recipient})
+ except Exception:
+ logging.error('Failed to send email to %r', recipient, exc_info=True)
+ else:
+ logging.info('Sent email to %r', recipient)
« no previous file with comments | « sitescripts/submit_email/bin/__init__.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld