aboutsummaryrefslogtreecommitdiffstats
path: root/python/mailing_list.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/mailing_list.py')
-rw-r--r--python/mailing_list.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/mailing_list.py b/python/mailing_list.py
index d4309d30..3dad0451 100644
--- a/python/mailing_list.py
+++ b/python/mailing_list.py
@@ -21,10 +21,10 @@ server = smtplib.SMTP('smtp.gmail.com:587')
server.starttls()
server.login(gmail_login, gmail_password)
-with open("templates/template-2014-05-19.txt") as fh:
+with open("templates/template-2014-06-13.txt") as fh:
s_text = Template(fh.read())
-with open("templates/template-2014-05-19.html") as fh:
+with open("templates/template-2014-06-13.html") as fh:
s_html = Template(fh.read())
attachment_name = 'Serenitas Capital (SCGMF Returns).pdf'