sdi/events.py
branchanoop
changeset 246 3a32df4b3171
parent 212 5c71757e7e0e
child 247 6fd2e9275805
equal deleted inserted replaced
245:30053a24a92a 246:3a32df4b3171
   267 """
   267 """
   268 
   268 
   269     for emails in to_emails:
   269     for emails in to_emails:
   270         send_mail(subject, message, "sagedays@fossee.in", emails)
   270         send_mail(subject, message, "sagedays@fossee.in", emails)
   271 
   271 
       
   272 
       
   273 def mail_cust_invi(to_emails):
       
   274     """ send the custom invitation email to given email addresses.
       
   275     """
       
   276 
       
   277     subject = "SciPy 2010 Call for Papers & Participation"
       
   278 
       
   279     message = """
       
   280 ==========================================
       
   281 SciPy 2010 Call for Papers & Participation
       
   282 ==========================================
       
   283 
       
   284 The second SciPy India Conference <http://scipy.in> will be held
       
   285 from December 13th to 18th, 2010 at IIIT-Hyderabad
       
   286 <http://www.iiit.ac.in/>.
       
   287 
       
   288 At this conference, novel applications and breakthroughs made in the
       
   289 pursuit of science using Python are presented.  Attended by leading
       
   290 figures from both academia and industry, it is an excellent
       
   291 opportunity to experience the cutting edge of scientific software
       
   292 development.
       
   293 
       
   294 The conference is followed by two days of tutorials and a code sprint,
       
   295 during which community experts provide training on several scientific
       
   296 Python packages.
       
   297 
       
   298 We invite you to take part by submitting a talk abstract or register
       
   299 as a participant on the conference website at:
       
   300 
       
   301 http://scipy.in
       
   302 
       
   303 Talk/Paper Submission
       
   304 =====================
       
   305 
       
   306 We solicit talks and accompanying papers (either formal academic or
       
   307 magazine-style articles) that discuss topics regarding scientific
       
   308 computing using Python, including applications, teaching, development
       
   309 and research.  Papers are included in the peer-reviewed conference
       
   310 proceedings, published online.
       
   311 
       
   312 Please note that submissions primarily aimed at the promotion of a
       
   313 commercial product or service will not be considered.
       
   314 
       
   315 Important Dates
       
   316 ===============
       
   317 
       
   318 Wednesday, Nov. 10: Abstracts Due
       
   319 Monday, Nov. 15: Schedule announced
       
   320 Sunday, Dec. 05: Proceedings paper submission due
       
   321 Monday-Tuesday, Dec. 13-14: Conference
       
   322 Wednesday-Friday, Dec. 15-17: Tutorials/Sprints
       
   323 Saturday, Dec. 18: Sprints
       
   324 
       
   325 Organizers
       
   326 ==========
       
   327 
       
   328 * Jarrod Millman, Neuroscience Institute, UC Berkeley, USA (Conference Co-Chair)
       
   329 * Prabhu Ramachandran, Department of Aerospace Engineering, IIT
       
   330 Bombay, India (Conference Co-Chair)
       
   331 * FOSSEE Team
       
   332 
       
   333 --
       
   334 Scipy India Team,
       
   335 FOSSEE, IIT Bombay.
       
   336 
       
   337 www.scipy.in
       
   338 """
       
   339 
       
   340     for emails in to_emails:
       
   341         send_mail(subject, message, "info@scipy.in", emails)
       
   342