Good morning,
I've read many examples and solutions to describe what I want to do (Email SharePoint list item with attachments), and I believe I am doing everything correctly, however I have two issues that don't seem to appear anywhere else.
First: When I add the JSON to populate my 'attachArray', I am prompted to "Enter a valid json" until I add an extra comma or semicolon after the code. This doesn't seem to affect anything, but it's definitely odd.


Second, while my flow runs without error, and the output looks correct, the attachments never make it to the email. I am currently testing with two small, simple text files. Here is the flow step:

Here is the output:

The raw inputs:
{
"host": {
"connectionReferenceName": "shared_office365",
"operationId": "SendEmailV2"
},
"parameters": {
"emailMessage/To": "deleted@email;",
"emailMessage/Subject": " Test... has been created or modified [TEST]",
"emailMessage/Body": "<p>This is a test<br>\nTest Text One.txt, Test Text Two.txt, </p>",
"emailMessage/Attachments": [
"{ \n“Name”:Test Text One.txt,\n“ContentBytes”This is test text document one\n};",
"{ \n“Name”:Test Text Two.txt,\n“ContentBytes”This is test text document two\n};"
],
"emailMessage/Importance": "Normal"
}
}
The downloaded OUTPUT:
{"statusCode":200,"headers":{"Pragma":"no-cache","x-ms-request-id":"b7291d4d-a003-2493-98df-8b57e3afe990","Strict-Transport-Security":"max-age=31536000; includeSubDomains","X-Content-Type-Options":"nosniff","X-Frame-Options":"DENY","Cache-Control":"no-store, no-cache","Set-Cookie":"ARRAffinity=59fce84ed840ff13733470e527d4d138afeb7dd6f97aa09a47d6bce8875b278b;Path=/;HttpOnly;Secure;Domain=office365-usdde.azconn-usdde.p.azurewebsites.us,ARRAffinitySameSite=59fce84ed840ff13733470e527d4d138afeb7dd6f97aa09a47d6bce8875b278b;Path=/;HttpOnly;SameSite=None;Secure;Domain=office365-usdde.azconn-usdde.p.azurewebsites.us","Timing-Allow-Origin":"*","x-ms-apihub-cached-response":"false","Date":"Tue, 14 Sep 2021 15:36:36 GMT","Content-Length":"0","Expires":"-1"}}
And here is the email received (without attachments...):

Thanks for reading... Suggestions?