Create same message for multiple selected users (one input → multiple records)

I want this UX:

  1. User selects multiple recipients

  2. Logged-in user writes one message

  3. 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?

Hi @Yuki.O,

For bulk operations, countdown trick (found by Victor) can be used for small amount of records or a 3rd party integration can be used. (MAKE is my favorite) What would be the goal here, is this a group chat?

Thank you and have a great day!