diff options
author | Jayaram Pai | 2014-06-19 12:17:13 +0530 |
---|---|---|
committer | Jayaram Pai | 2014-06-19 12:17:13 +0530 |
commit | 40522e19aca14a1625229c2abfa34ff8e50c7c9d (patch) | |
tree | 13a1a4008f03896560152cdfc4d6e1e7fdaab39e /website | |
parent | d6c971711f5b95119ee4a868559ba0256e95c937 (diff) | |
download | FOSSEE-Forum-40522e19aca14a1625229c2abfa34ff8e50c7c9d.tar.gz FOSSEE-Forum-40522e19aca14a1625229c2abfa34ff8e50c7c9d.tar.bz2 FOSSEE-Forum-40522e19aca14a1625229c2abfa34ff8e50c7c9d.zip |
completed unanswered notification
Diffstat (limited to 'website')
-rw-r--r-- | website/views.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/website/views.py b/website/views.py index 5a6dd58..7e33a87 100644 --- a/website/views.py +++ b/website/views.py @@ -543,7 +543,9 @@ def unanswered_notification(request): question.category, 'http://forums.spoken-tutorial.org/question/' + str(question.id) ) - to = "rush2jrp@gmail.com, jayaram@iitb.ac.in" + to = "team@spoken-tutorial.org, team@fossee.in" subject = "Unanswered questions in the forums." - forums_mail(to, subject, message) + if total_count: + forums_mail(to, subject, message) return HttpResponse(message) + |