From 36f6068f6ec0a97f6d019979c8b4dbfef9818dd9 Mon Sep 17 00:00:00 2001 From: Sanj Date: Tue, 1 Nov 2011 03:55:17 +0000 Subject: [PATCH] added indiatheatreforum@gmail.com email address to contact form --- itf/frontpage/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itf/frontpage/views.py b/itf/frontpage/views.py index 7ad34de..750b726 100755 --- a/itf/frontpage/views.py +++ b/itf/frontpage/views.py @@ -22,7 +22,7 @@ class ContactForm(forms.Form): name = self.cleaned_data['name'] message = self.cleaned_data['message'] message_body = '%s wrote: \n\n %s' % (name, message,) - recipients = ['sanjaybhangar@gmail.com'] + recipients = ['sanjaybhangar@gmail.com', 'indiatheatreforum@gmail.com'] send_mail(fail_silently=fail_silently, from_email=email, message=message_body, recipient_list=recipients, subject="Contact on theatreforum.in") '''