summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
authorhardythe12015-07-07 12:44:44 +0530
committerhardythe12015-07-07 12:44:44 +0530
commitd1698be5bcd63a11d71d0bfbbf256f5373c9f276 (patch)
tree1f6fe0ebafc1ff7bc9531af1ab8b209105064b8b /website
parent0ab7707966926426a5a94cf85b274f2e4ae75b5c (diff)
downloadSciPy2015-d1698be5bcd63a11d71d0bfbbf256f5373c9f276.tar.gz
SciPy2015-d1698be5bcd63a11d71d0bfbbf256f5373c9f276.tar.bz2
SciPy2015-d1698be5bcd63a11d71d0bfbbf256f5373c9f276.zip
change subject for proposal acknowledgment
Diffstat (limited to 'website')
-rw-r--r--website/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/website/views.py b/website/views.py
index fe99104..4b02957 100644
--- a/website/views.py
+++ b/website/views.py
@@ -58,9 +58,9 @@ def submitcfp(request):
context['proposal_submit'] = True
sender_name = "SciPy India 2015"
sender_email = "scipy@fossee.in"
- subject = "Query from - "+sender_name
+ subject = "SciPy India - Proposal Acknowledgment"
to = (social_user.email, )
- message = """Dear """+django_user.first_name+""",\n Thank you for showing interest & submitting a talk at SciPy India 2015 conference. We have received your proposal for the talk titled '"""+request.POST['title']+"""'. Reviewal of the proposals will start once the CFP closes. You 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 <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"""
send_mail(subject, message, sender_email, to)
return render_to_response('cfp.html', context)
else: