diff options
author | Sashi20 | 2018-09-19 12:39:53 +0530 |
---|---|---|
committer | GitHub | 2018-09-19 12:39:53 +0530 |
commit | c907f4978c420c357e23c0f9098ca3d69a135bba (patch) | |
tree | 469d96d5e2729cfb7d78f696d9114a3a4b9dfd82 /website/views.py | |
parent | 3ff95c180e304f889ddc0113603ac98bce63f42f (diff) | |
parent | 0f977c31a390436cf19eb5a78c4ebbb1de845d79 (diff) | |
download | nccps-2018-c907f4978c420c357e23c0f9098ca3d69a135bba.tar.gz nccps-2018-c907f4978c420c357e23c0f9098ca3d69a135bba.tar.bz2 nccps-2018-c907f4978c420c357e23c0f9098ca3d69a135bba.zip |
Merge pull request #9 from Sashi20/master
Added checkbox for terms and conditions in paper submission and modified email template for submission acknowledgement
Diffstat (limited to 'website/views.py')
-rw-r--r-- | website/views.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/website/views.py b/website/views.py index 95c0808..71c8f8f 100644 --- a/website/views.py +++ b/website/views.py @@ -223,14 +223,16 @@ def submitcfp(request): context['proposal_submit'] = True sender_name = "NCCPS 2018" sender_email = TO_EMAIL - subject = "NCCPS 2018 – Talk Proposal Submission Acknowledgment" + subject = "NCCPS 2018 – Paper Submission Acknowledgement " to = (social_user.email, TO_EMAIL) message = """ Dear {0}, <br><br> - Thank you for showing interest & submitting a paper proposal at NCCPS 2018 conference for the paper titled <b>“{1}”</b>. Reviewal of the proposals will start once the CFP closes. - <br><br>You will be notified regarding comments/selection/rejection of your paper via email. - Visit this {2} link to view status of your submission. - <br>Thank You ! <br><br>Regards,<br>NCCPS 2018,<br>FOSSEE - IIT Bombay. + Thank you for showing interest & submitting a paper proposal at NCCPS-2018 + for the paper titled “test title paper”. Reviewal of the proposals will start + once the CFP closes. + You will be notified regarding comments/selection/rejection of your paper via email. + Visit this {2} link to view the status of your submission. + <br>Thank You. <br><br>Regards,<br>NCCPS 2018,<br>FOSSEE - IIT Bombay. """.format( social_user.first_name, request.POST.get('title', None), |