forked from rmsander/webmoira-management
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail_user_information.py
92 lines (72 loc) · 3.14 KB
/
email_user_information.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
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
import smtplib
import pandas as pd
import argparse
def mail_to_list(email_list, info_list, gmail, password, subject, test_only=False):
"""Send an email to everyone in the provided csv."""
server = smtplib.SMTP('smtp.gmail.com', 587)
server.ehlo()
server.starttls()
server.ehlo()
print("GMAIL : {}, PASSWORD: {}".format(gmail, password))
#server.login(gmail, password)
# Count how many emails have been sent
i = 0
num_users = len(info_list)
for email, info in zip(email_list, info_list):
body = """PUT TEXT OF YOUR EMAIL HERE AND USE .format(info) to insert
email-specific information into the email."""
if test_only: # If you want to do a test run first
print(
"_______________________________________________________________\n"
"TEST ONLY: {}".format(test_only))
print("TESTING: ROW {}".format(i))
print("Email body: {} \n GMAIL (sending from): {} \n"
"Current email: {} \n Info: {} \n Subject: {}".format(
body, gmail, email, info, subject))
print("_______________________________________________________________")
i += 1
else: # Once happy with formatting, send the emails
msg = MIMEMultipart()
msg['From'] = gmail
msg['To'] = email
msg['Subject'] = subject
msg.attach(MIMEText(body, 'plain'))
text = msg.as_string()
server.sendmail(gmail, email, text)
print('Sent email %s out of %s' % ((i + 1), num_users))
i += 1
# Notify user that emails have finished sending
print('Done sending emails.')
def parse_args():
"""Standard command-line argument parser."""
# Create command line args
parser = argparse.ArgumentParser()
parser.add_argument("gmail", help="Your gmail username, including "
"@gmail.com", type=str)
parser.add_argument("gmail_PW", help="Your gmail password.", type=str)
parser.add_argument("subject", help="Email subject.", type=str)
parser.add_argument("file", help="Read from Excel file", type=str)
parser.add_argument("-t", "--test", required=False, action="store_true")
# Parse arguments
results = vars(parser.parse_args())
# Display
print("Your email management selections: \n {}".format(results))
# Get variables
gmail = results["gmail"]
pw = results["gmail_PW"]
subject = results["subject"]
file = results["file"]
test = results["test"]
return gmail, pw, subject, file, test
def main():
# Parse args and read in data, if we have
gmail, pw, subject, file, test = parse_args()
df = pd.read_excel(file) # Read as excel file
# Default form: Spreadsheet headers are 'email' and 'info' (where info can be more than one column)
email_list = df['email'] # Email column
info_list = df['info'] # Info column(s)
mail_to_list(email_list, info_list, gmail, pw, subject, test_only=test)
if __name__ == "__main__":
main()