Admin Notification

What’s the best way to setup a notification for an Admin or certain roll when someone posts a comment?

1 Like
  • Use a query column in your Users table to get all users with roles as you need.
  • Use a lookup on top of that query to return all those users’ emails.
  • Assuming you’re talking about push notifications and have enabled it, every time a user posts a new comment either via the chat component or a form, add an on-submit action to send a push notification to that list of users you get via the lookup.
3 Likes