Hi,
I have created a basic flow when the following parts:
- When a file is created (One Drive business)
- Send an email V2 (outlook 365)
The file part has a recurrence of 5 minutes. Now when I copy 10 files simultaneously into the One Drive folder, after an hour waiting I'm still not receiving an email, while the Test worked within 10 minutes of waiting. Any ideas what's happening and I'm not seeing the email as expected? Does it have to do with the 10 files at once?
I have a Office 356 Standard plan by the way.
Regards,
p.s.
Code view: When a file is created.
{
"inputs": {
"host": {
"connectionName": "shared_onedriveforbusiness",
"operationId": "OnNewFileV2",
"apiId": "/providers/Microsoft.PowerApps/apis/shared_onedriveforbusiness"
},
"parameters": {
"folderId": "lef out due to privacy",
"includeSubfolders": true,
"inferContentType": true
},
"authentication": "@parameters('$authentication')"
},
"recurrence": {
"interval": 5,
"frequency": "Minute"
},
"metadata": {
"left out due to pricavy"
}
}
Code view for Send an email V2
{
"inputs": {
"host": {
"connectionName": "shared_office365",
"operationId": "SendEmailV2",
"apiId": "/providers/Microsoft.PowerApps/apis/shared_office365"
},
"parameters": {
"emailMessage/To": "left out due to privacy",
"emailMessage/Subject": "left out due to privacy",
"emailMessage/Body": "left out due to privacy",
"emailMessage/Cc": "left out due to privacy",
"emailMessage/Attachments": [
{
"Name": "@triggerOutputs()?['headers/x-ms-file-name-encoded']",
"ContentBytes": "@triggerOutputs()?['body']"
}
]
},
"authentication": "@parameters('$authentication')"
}
}