From 6498ac90f7bdf2ca16417c685ce29f88853d34ad Mon Sep 17 00:00:00 2001 From: Sanj Date: Sun, 24 Jul 2011 12:02:20 +0530 Subject: [PATCH] comments notify email addresses --- itf/erang_organised/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itf/erang_organised/models.py b/itf/erang_organised/models.py index 0e4022b..fc4bc4f 100644 --- a/itf/erang_organised/models.py +++ b/itf/erang_organised/models.py @@ -53,7 +53,7 @@ def comments_notify(sender, **kwargs): # url = "http://theatreforum.in/erang/?issue_id=%d" % (erang_id) admin_url = "http://theatreforum.in/admin/comments/comment/%d/" % (comment_id) message = "Name: %s \n Email: %s \n Comment: %s\n\n Moderate: %s" % (name, email, content, admin_url) - send_mail("New comment on Theatreforum.in", message, "do_not_reply@theatreforum.in", ["erang@theatreforum.in", "sanjaybhangar@gmail.com", "sharvari@theatreforum.in"]) + send_mail("New comment on Theatreforum.in", message, "do_not_reply@theatreforum.in", ["sanjaybhangar@gmail.com"]) return True comment_was_posted.connect(comments_notify)