scripts/mails.py
changeset 82 a123369b0901
parent 61 959ec5eaafb1
child 96 178b89a3ca4f
--- a/scripts/mails.py	Wed Dec 16 23:25:46 2009 +0530
+++ b/scripts/mails.py	Mon Dec 28 23:25:47 2009 +0530
@@ -123,3 +123,19 @@
 
         talk.speaker.email_user(subject=subject, message=message,
                                 from_email='admin@scipy.in')
+
+def proceedings_detail():
+    """Sends a mail to each speaker informing them about proceedings
+    """
+
+    talks = Talk.objects.all()
+
+    template = 'notifications/proceedings_detail_mail.html'
+
+    for talk in talks:
+        subject = 'SciPy.in 2009 Proceedings'
+        message = loader.render_to_string(
+            template, dictionary={'name': talk.speaker.username})
+
+        talk.speaker.email_user(subject=subject, message=message,
+                                from_email='admin@scipy.in')