##This is a Python script to programmatically send templated emails to numerous recipients in a csv file
###Edit the following in config.py
config = {
'username' : 'your_gmail_username', #without domain (i.e. @gmail.com)
'password' : 'your_password',
'sender_name' : 'Your Name',
'csv_fname' : 'emails.csv',
'template_fname' : 'email_template.txt',
'email_subject' : 'Email Subject'
}