diff -r 14e8dada23e0 -r 291f4bb93888 scripts/mails.py --- a/scripts/mails.py Thu Nov 18 23:17:50 2010 +0530 +++ b/scripts/mails.py Fri Nov 19 00:17:05 2010 +0530 @@ -25,7 +25,7 @@ template = 'notifications/speaker_accepted_mail.html' for talk in talks: - subject = 'Your talk has been selected for SciPy.in 2009!' + subject = 'Your talk has been selected for SciPy.in 2010!' message = loader.render_to_string( template, dictionary={'name': talk.speaker.username, 'title': talk.title}) @@ -44,7 +44,7 @@ template = 'notifications/speaker_sponsorship_mail.html' for talk in talks: - subject = 'Details regarding your travel and accommodation for SciPy.in 2009' + subject = 'Details regarding your travel and accommodation for SciPy.in 2010' message = loader.render_to_string( template, dictionary={'name': talk.speaker.username, 'title': talk.title}) @@ -78,7 +78,7 @@ template = 'notifications/sprints_about_mail.html' for reg in regs: - subject = 'SciPy.in 2009: Details of the individual events' + subject = 'SciPy.in 2010: Details of the individual events' message = loader.render_to_string( template, dictionary={'name': reg.registrant.username}) @@ -96,7 +96,7 @@ template = 'notifications/last_day_mail.html' for reg in regs: - subject = 'SciPy.in 2009: Schedule and other details' + subject = 'SciPy.in 2010: Schedule and other details' message = loader.render_to_string( template, dictionary={'name': reg.registrant.username}) @@ -113,7 +113,7 @@ template = 'notifications/speaker_confirmation_mail.html' for talk in talks: - subject = 'SciPy.in 2009: Requesting for confirmation of your talk' + subject = 'SciPy.in 2010: Requesting for confirmation of your talk' message = loader.render_to_string( template, dictionary={'name': talk.speaker.username, 'title': talk.title}) @@ -130,7 +130,7 @@ template = 'notifications/proceedings_detail_mail.html' for talk in talks: - subject = 'SciPy.in 2009 Proceedings' + subject = 'SciPy.in 2010 Proceedings' message = loader.render_to_string( template, dictionary={'name': talk.speaker.username})