Hi @Greening,
If you want to be able to sent multiple attachments in a single email you can use an array variable and store the name and content bytes in there.
You can move the Send an email (v2) action outside the apply to each loop and use that array variable in the (after you switch the input of that Attachments field to entire array).
Below is an example
The append to array variable value:
{
"Name": "@{items('Apply_to_each')?['DisplayName']}",
"ContentBytes": @{body('Get_attachment_content')}
}
