diff options
author | adityacp | 2017-06-14 12:33:45 +0530 |
---|---|---|
committer | adityacp | 2017-06-14 12:33:45 +0530 |
commit | 57eaf342d16f33b8ea67b89c78907d9c1f7b4632 (patch) | |
tree | 382f790d18a555b7985ce090a9043ad267fa1d63 /yaksh/send_emails.py | |
parent | 18fff6daed3d57471514fdf189c60865838d43ee (diff) | |
download | online_test-57eaf342d16f33b8ea67b89c78907d9c1f7b4632.tar.gz online_test-57eaf342d16f33b8ea67b89c78907d9c1f7b4632.tar.bz2 online_test-57eaf342d16f33b8ea67b89c78907d9c1f7b4632.zip |
Change send_emails.py and course_detail.html
- Change variable assignment in send_emails.py
- Add proper indentation in course_detail.html
Diffstat (limited to 'yaksh/send_emails.py')
-rw-r--r-- | yaksh/send_emails.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/send_emails.py b/yaksh/send_emails.py index 4465ce9..ae49f23 100644 --- a/yaksh/send_emails.py +++ b/yaksh/send_emails.py @@ -63,7 +63,7 @@ def send_user_mail(user_mail, key): def send_bulk_mail(subject, email_body, recipients, attachments): try: - text_msg = "Yaksh" + text_msg = "" msg = EmailMultiAlternatives(subject, text_msg, settings.SENDER_EMAIL, recipients ) |