Hi All,
I created a flow to monitor a shared mailbox and when and email with an attachment from specific email address arrives the flow uploads the attachment to the SharePoint library and send notifications that a file with IDxx and filename xxxx has been uploaded.
The specific emails (with an attachment) is received once a day, so the flow runs once a day. The attachment is an .xls file.
The flow worked fine while testing and now after I have published the flow live, it run 12 times doing what is supposed to do.
Suddenly today the flow should've uploaded the 13th file, but it did not happen, although the flow result is success at first part.
The flow history showed that flow run OK - no error messages.
But when it came to "Apply to each" action - uploading the attachment and then sending the notification after that, those actions are dimmed and no results:

I tried to resend the same email with the attachment again to the shared mailbox and the same result - did not create the file.
I uploaded the attachment manually and it uploaded successfully to the SP document library- so it is not the file the problem.
From previous history of the flow I see that there are 2 results per flow run within couple of minutes - one picks up the email with the attachment, second creates the file on Sharepoint from attachment:

First flow result:

And second part result:

"Create file" raw inputs:
Create file Inputs:
{
"host": {
"connectionReferenceName": "shared_sharepointonline",
"operationId": "CreateFile"
},
"parameters": {
"folderPath": "/InfoPacks",
"name": "2021-07-24T10:30:15+00:00_InfoPack.xls",
"body": "0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAA..........."
}
}
Today, there is just the first part run in the history (see above). The second part did not happened - as per screenshots above.
I'm not sure what happened or aware if anything happened so the flow suddenly to stop creating the files in SharePoint - nothing has changed since before, no error messages ( I have an error notification set up in the "If no" branch). And why it run OK 12 times and then stop?
Any help, pls?