Hello! I want to give my admins the ability to send notifications to everyone on my website, but I don’t know how to set that up. The notifications are in their own separate database that has:
Notification Title (Type: Text)
Notification Text (Type: Text)
Seen (Type: yes/no)
and the recipient of the notification, the unique userID (Type: Text)
As of now, I can only send notifications to only one user at a time. Is there any way I could be able to send a notification to everyone?
@newhorizoncode If he changes it to a list of users he can’t have independent “Seen yes/no” per user.
Maybe do bulk create of your notification datatype with the Data API and have a database trigger send the notification when the thing is created, or probably better for capacity do some kind of recursive notification create and send per user?
And also switch that user unique id text field to an actual User type?