I have a question, I am trying to find the best way to build a notification system around my app.
The user will have a list of things, and from that list of things I’d want the app to select a random item of that list and send a notification to the user with dynamic text.
For example: Remember to buy “item-in-user-list-of-things” how can I achieve this?
Likewise, how can I set parameters around those notifications so the user can choose its frequency (i.e once a day, twice a day, once a week, etc)
As there is no built-in scheduler in Adalo, this task may require integration of various approaches & external components.
The logic which I can imagine would be: user does some action, then scheduled notification is created. When time comes, the external service gets info from the list using API, populates the notification with it and sends it to the user. And also it kind of “recreates” itself to schedule the next notification in a desired period of time.