这是我第一次使用 django 信号,我想挂钩评论应用程序提供的“comment_was_flagged”信号,以便在标记评论时通知我。
这是我的代码,但它似乎不起作用,我错过了什么吗?
from django.contrib.comments.signals import comment_was_flagged
from django.core.mail import send_mail
def comment_flagged_notification(sender, **kwargs):
send_mail('testing moderation', 'testing', 'test@localhost', ['myemail@gmail.com',])
comment_was_flagged.connect(comment_flagged_notification)
(我现在只是在测试电子邮件,但我已经确保电子邮件可以正确发送。)
谢谢!