-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsend.py
118 lines (93 loc) · 3.93 KB
/
send.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import config
import re
import smtplib
FIELD_DELIMITER = "\t"
PARAM_PATTERN = "{{([a-z_0-9]*)}}"
REPLACE_PATTERN = "{{%s}}"
def remove_junk(text):
return re.sub(r"[\x80-\xff]", ' ', text).strip()
def extract_just_emails(emails):
just_emails = []
for full_email in emails:
just_email = re.compile("<(.*)>").findall(full_email)
if just_email:
just_emails.append(just_email[0])
elif '@' in full_email:
just_emails.append(full_email)
return just_emails
def get_recipients(names, emails):
names_list = names.split(',')
full_emails = ["%s <%s>" % (names_list[i], x) for i, x in enumerate(emails.split(','))]
return ', '.join(full_emails)
def get_first_names(names):
first_names = [x.split(" ")[0] for x in names.split(',')]
return ', '.join(first_names)
def lookup_key(key, entry_values):
if key in entry_values:
return entry_values[key]
elif key in config.EXTRA_PARAM_KEYS:
return config.EXTRA_PARAM_KEYS[key]
elif key == 'first_name':
return get_first_names(entry_values['email_names'])
def replace_keys(phrase, entry_values):
phrase_keys = re.findall(PARAM_PATTERN, phrase)
for key in phrase_keys:
param_value = lookup_key(key, entry_values)
phrase = re.sub(REPLACE_PATTERN % key, param_value, phrase)
return phrase
# ===============================================================
# BEGIN SCRIPT
# ===============================================================
server = smtplib.SMTP(config.SMTP_SERVER)
server.ehlo()
server.starttls()
server.login(config.SMTP_EMAIL, config.SMTP_PWD)
with open(config.FILENAME_BODY, 'r') as f:
BODY_TEMPLATE = f.read()
with open(config.FILENAME_SUBJECT, 'r') as f:
SUBJECT_TEMPLATE = f.read().split('\n')[0]
with open(config.FILENAME_RECIPIENTS_TSV, 'r') as f:
mailing_list = f.read().split('\n')
mailing_keys = [x.strip() for x in mailing_list[0].split(FIELD_DELIMITER)]
# a list of key:value dicts for each mailing_list entry
mailing_recipients = [{mailing_keys[i]:remove_junk(y)
for i, y in enumerate(x.split(FIELD_DELIMITER))}
for x in mailing_list[1:]]
msg = "PREVIEW_MODE is " + str(config.PREVIEW_MODE) + "."
if not config.PREVIEW_MODE:
msg += " **** THIS IS THE REAL THING!!! **** "
confirm = raw_input(msg + " Enter y to continue: ")
if confirm != 'y':
exit(0)
for entry in mailing_recipients:
cc_emails = config.MSG_CC[:] or []
if config.HEADER_PARAM_EMAIL in entry:
if config.PREVIEW_MODE:
entry[config.HEADER_PARAM_EMAIL] = ','.join(config.PREVIEW_EMAILS)
entry.pop(config.HEADER_PARAM_CC, None)
subject = replace_keys(SUBJECT_TEMPLATE, entry)
body = replace_keys(BODY_TEMPLATE, entry)
if config.HEADER_PARAM_CC in entry:
cc_emails.append(entry[config.HEADER_PARAM_CC])
headers = ["From: " + config.MSG_FROM,
"To: " + entry[config.HEADER_PARAM_EMAIL],
"Subject: " + subject,
"mime-version: 1.0",
"content-type: text/plain"]
if cc_emails:
headers.append("CC: " + ', '.join(cc_emails))
headers = "\r\n".join(headers)
print "============================================="
print headers
print body[:70], "..."
print "============================================="
confirm = raw_input("Do you really want to send this to %r? " % entry[config.HEADER_PARAM_EMAIL])
if confirm == 'y':
#collect all emails in To, From, and CC fields
send_to_emails = entry[config.HEADER_PARAM_EMAIL] + ',' + config.MSG_FROM + ',' \
+ ','.join(cc_emails)
send_to_emails = extract_just_emails(send_to_emails.split(','))
server.sendmail(config.MSG_FROM,
send_to_emails,
headers + "\r\n\r\n" + body)
server.quit()