I am trying to build a flow where if "Email" field = today's date, the corresponding email will be added to a email draft. The flow I managed to create generates 1 draft email per email address, but I want ALL (multiple) email addresses to be in 1 draft email. So everyone who met the if condition get the same email. Could you please let me know how I should reconfigure to achieve this?




The current JSON code:
{
"subject":"L&L Testing",
"body":{
"contentType":"HTML",
"content":"Hello !"
},
"toRecipients":[
{ "emailAddress":{
"address":"@{outputs('Compose_-_Employee_Email')}" } }
]
}