问题,
我已经为它创建了我的新通知,我的新通知模板。一旦用户执行特定操作,它就会创建新记录,但不会发送电子邮件。
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')})