Hello Everyone.
I have a SharePoint list that has two email addresses in it (I will add more) and I wanted to know how to join each email address together as one whole list to then use in my next flow step to send them all an email via Outlook.
Here is what I have so far:
1 - Get all items from the SharePoint list and select the email addresses.

The output of that looks like this:
[
{
"email1@domain.com": ""
},
{
"email2@domain.com": ""
}
]
How can I then join these together, so it looks like this:
email1@domain.com, email2@domain.comand then use that output in the
To field of Outlook?

I had this as a Compose, but it doesn't seem correct -
join(Output('Select'),';')
Any help is much appreciated - thanks!