Hi all, just want to check if this is viable scenario - if we take a SPO list with 2 columns: "user name" and "email", for example:
Column SPOName: John Doe , Jane Doe
Column SPOEmail: john.doe@contoso.com, jane.doe@contoso.com
- Initialise string variable ListItems
- Get items - point to SPO list;
- Apply to each > Set Variable ListItems with value: "SPO name - <at>SPOEmail</at>, "
- Use ListItems as dynamic content to insert into adaptive card.
It works fine but in the final card, only 1 entry is getting added, while Flow run showing list of these values:

And final result is just "Jane Doe - @Jane.doe@contoso.com".
How to make all "Apply to Each" variable results to be output into continuous text string like : "Jane Doe - @Jane.doe@contoso.com, John Doe - @John.doe@contoso.com,"?
I suspect that some Compose action is needed but what would be espression to add all these variables in the string?