Send a message 1 by 1

Hii, I’m receiving an array with, for example, 2 results that would be 2 clients with their data, so I want to send each one a personalized message with their data. How can I do this? I leave you here some images of the flow
Thanks!






1 Like

Hey David,

in the first screenshot you already have the arrays with name and telephone number pairs. Then in the 2nd and 3rd screenshots you are showing you split them in two separate arrays and it looks like you are trying to merge them together again? Why? Just use the original array with an iterator after it to process the items one at a time.

1 Like

You are absolutely right, but I still have the same problem in the iterator, it only returns the first result and does not execute the WhatsApp module twice to send those 2 messages to each one.

1 Like

Can you send a screenshot on how its setup at the moment?

1 Like




image

1 Like

Iterate on the entire array instead. At the moment you are creating a sub array with only the numbers so you wont get the names there.

Then it looks like you are mapping the first number from the original array, instead map the output of the iterator module.