Hi @Intoxicated
Pls follow the below steps to send the list attachments in an email:
1. After "Get attachments" action, add an action to initialize the array variable that holds list item attachments information (name & bytes):

2. Next, add "Get attachment content" action to get the content bytes of each attachment. Pass the values in the input parameter as shown below:

3. Now, continue inside in the "Apply to each" action, add "Append to array variables" action to collect the name & content bytes or each attachment:

The code used inside "Value" parameter:
{
"name":@{item()?['DisplayName']},
"contentBytes":@{body('Get_attachment_content')}
}
4. Finally, send the email by passing variable in the 'Attachments' parameter. This action should be called outside the "Apply to each" action:

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.
Thanks