diff options
author | hardythe1 | 2015-08-07 11:53:45 +0530 |
---|---|---|
committer | hardythe1 | 2015-08-07 11:53:45 +0530 |
commit | 5ea568246060dc8757be70eb22826f38cc720282 (patch) | |
tree | 75d4de1dde7aa98f553dc57f727285b039d52683 /tbc | |
parent | e0122aacbe94daa94369a3b21122bfd7543cfef8 (diff) | |
download | Python-TBC-Interface-5ea568246060dc8757be70eb22826f38cc720282.tar.gz Python-TBC-Interface-5ea568246060dc8757be70eb22826f38cc720282.tar.bz2 Python-TBC-Interface-5ea568246060dc8757be70eb22826f38cc720282.zip |
change mail message for book updation
Diffstat (limited to 'tbc')
-rwxr-xr-x | tbc/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tbc/views.py b/tbc/views.py index 5a8cb89..6955b8f 100755 --- a/tbc/views.py +++ b/tbc/views.py @@ -901,7 +901,7 @@ def SubmitCode(request): curr_proposal.id) email_send(curr_book.reviewer.email, subject, message) subject = "Python-TBC: Codes Updated Acknowledgement" - message = """Hi """+curr_book.contributor.user.first_name+""",\nCodes for the book given below have been successfully updated.\nBook Title: """+curr_book.title+"""\nAuthor: """+curr_book.author+"""\n Publisher: """+curr_book.publisher_place+"""\nISBN: """+curr_book.isbn+"""\n\nPlease be patient while we review your updated codes & get back to you. Review will take a minimum of 25 days. Hoping for kind cooperation.""" + message = """Hi """+curr_book.contributor.user.first_name+""",\nCodes for the book given below have been successfully updated.\nBook Title: """+curr_book.title+"""\nAuthor: """+curr_book.author+"""\n Publisher: """+curr_book.publisher_place+"""\nISBN: """+curr_book.isbn+"""\n\nPlease be patient while we review your updated codes & get back to you. Hoping for kind cooperation.""" email_send(curr_book.contributor.user.email, subject, message) return HttpResponseRedirect('/?bookupdate=done') if request.method == 'POST': |