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

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

Issue 29327614: Noissue - Remove Adblock Browser iOS bulk email stuff (Closed)
Patch Set: Created Sept. 15, 2015, 6:55 a.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
Index: sitescripts/submit_email/bin/send_mass_email.py
===================================================================
deleted file mode 100644
--- a/sitescripts/submit_email/bin/send_mass_email.py
+++ /dev/null
@@ -1,42 +0,0 @@
-# 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') | sitescripts/submit_email/template/adblockbrowser_ios_newsletter.mail » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld