I have come across documentation that states if I return an array of objects, the next steps will execute for each object individually. For instance, if I pass an array containing email addresses and then use those addresses to send emails in the following step, emails are expected to be sent to all listed addresses. However, I’m only seeing the first email being sent. Can someone help me identify the issue with my approach?
const results = [
{identifier: 1, contact: '[email protected]'},
{identifier: 2, contact: '[email protected]'},
{identifier: 3, contact: '[email protected]'},
];