summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhardythe12015-07-07 12:50:08 +0530
committerhardythe12015-07-07 12:50:08 +0530
commitb0c2040b9ba06543c65acb593507c3a7192516f8 (patch)
treefe719e88343a9d78bb4344bbbe525e43250c9b06
parentd1698be5bcd63a11d71d0bfbbf256f5373c9f276 (diff)
downloadSciPy2015-b0c2040b9ba06543c65acb593507c3a7192516f8.tar.gz
SciPy2015-b0c2040b9ba06543c65acb593507c3a7192516f8.tar.bz2
SciPy2015-b0c2040b9ba06543c65acb593507c3a7192516f8.zip
change message proposal acknowledgment
-rw-r--r--website/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/views.py b/website/views.py
index 4b02957..c793c09 100644
--- a/website/views.py
+++ b/website/views.py
@@ -60,7 +60,7 @@ def submitcfp(request):
sender_email = "scipy@fossee.in"
subject = "SciPy India - Proposal Acknowledgment"
to = (social_user.email, )
- message = """Dear """+django_user.first_name+""",\n\nThank you for showing interest & submitting a talk at SciPy India 2015 conference. We have received your proposal for the talk titled <b>'"""+request.POST['title']+"""'</b>.\nReviewal of the proposals will start once the CFP closes.\nYou will be notified regarding selection/rejection of your talk via email.\n\nThank You ! \n\nRegards,\nSciPy India 2015,\nFOSSEE - IIT Bombay"""
+ message = """Dear """+django_user.first_name+""",\n\nThank you for showing interest & submitting a talk at SciPy India 2015 conference. We have received your proposal for the talk titled '"""+request.POST['title']+"""'.\nReviewal of the proposals will start once the CFP closes.\nYou will be notified regarding selection/rejection of your talk via email.\n\nThank You ! \n\nRegards,\nSciPy India 2015,\nFOSSEE - IIT Bombay"""
send_mail(subject, message, sender_email, to)
return render_to_response('cfp.html', context)
else: