Hello! Im creating a shopping cart app on power apps and I want to send the shopping cart orders that I have stored in a gallery as an email. I created a collection and created a flow from automation. The flow works up until I added the email step. Any help would be greatly appreciated
Collect(
colShoppingCart,
{
ID: ThisItem.' $ITEM_ID',
Description: ThisItem.Description,
Price: ThisItem.Price,
Qty: Slider1.Value
}
)

