0

问题,

我已经为它创建了我的新通知,我的新通知模板。一旦用户执行特定操作,它就会创建新记录,但不会发送电子邮件。

django-notification 是否应该向用户发送自动电子邮件?

def new(request, template_name='wall/new.html', user=None):
    if request.method == 'POST':
        form = PostForm(request.POST)
        if form.is_valid():
            form.save()
            if request.POST.get('from_user') != request.POST.get('user'):
                if notification:
                    notification.send([request.user], "new_wall_post", {"user": request.user, "post": request.POST.get('text')})
4

1 回答 1

2

是的,它应该自动发送。

尝试检查:

1) 为该用户启用了“new_wall_post”的通知设置
2) 电子邮件对用户有效
3) 用户处于活动状态
4) 电子邮件后端配置正确

另外,你的意思是把通知发送给墙的主人而不是墙的海报吗?

于 2011-05-15T10:31:33.007 回答