From b0c2040b9ba06543c65acb593507c3a7192516f8 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Tue, 7 Jul 2015 12:50:08 +0530 Subject: change message proposal acknowledgment --- website/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'website') 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 '"""+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""" + 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: -- cgit