I want this UX:
-
User selects multiple recipients
-
Logged-in user writes one message
-
The app creates one message per selected user, each with the same text
So technically, I need to create multiple Message records (one per recipient) from a single text input.
What is the correct way to do this in Adalo?
Is looping through selected users and creating records the only approach, or is there a cleaner pattern?