summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
authorJayaram Pai2014-06-19 12:17:13 +0530
committerJayaram Pai2014-06-19 12:17:13 +0530
commit40522e19aca14a1625229c2abfa34ff8e50c7c9d (patch)
tree13a1a4008f03896560152cdfc4d6e1e7fdaab39e /website
parentd6c971711f5b95119ee4a868559ba0256e95c937 (diff)
downloadFOSSEE-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.py6
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)
+