else:
return
if notification:
- notification.send(users=[user], label=label, extra_context={'message': object, 'action': action})
+ # the context key 'message' is already used in django-notification/models.py/send_now() (v0.2.0)
+ notification.send(users=[user], label=label, extra_context={'pm_message': object, 'pm_action': action})
else:
if not DISABLE_USER_EMAILING and user.email and user.is_active:
email('postman/email_user_subject.txt', 'postman/email_user.txt', [user.email], object, action)