1
這是我第一次使用django信號,我想掛鉤評論應用程序提供的「comment_was_flagged」信號,以在評論被標記時通知我。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', '[email protected]', ['[email protected]',])
comment_was_flagged.connect(comment_flagged_notification)
(我只是測試的電子郵件了,但我已經向電子郵件正常發送。)
謝謝!