Hi @Anonymous,
Could you please share a screenshot of your flow's configuration?
Do you want to send an approval email to the supervisor?
Further, could you please show more details about your SharePoint list?
I have created a SharePoint list on my side and the data structure of it as below:
Note: The ApprovalStatus column is Choice type column, the available values of it are Open, Yes and No. If ApprovalStatus column are set to yes, it means that approver approve this item, otherwise, the approver reject this item.
I have made a test on my side and please take a try with the following workaround:
- Add a "For a selected item" action, specify Site Address and List Name.
- Add a "Get item" action, specify Site Address and List Name, Id field set to ID dynamic content of the trigger.
- Add a Parallel branch action, within left branch, add a "Send an email" action. Then add a "Do Until" action, click "Edit in advanced mode", type the following formula:
@or(equals(body('Get_item_2')?['ApprovalStatus']?['Value'], 'Yes'),equals(body('Get_item_2')?['ApprovalStatus']?['Value'], 'No'))
Click "Change limits", Count property (Default value is 60) set to empty and TimeOut property set to following formula:
P30D
Within "Do Until" action, add a "Get items 2" action, specify Site Address and List Name. Id field set to ID dynamic content of the trigger.
Under "Do until" action, add a "Get items 3" action, specify Site Address and List Name.Id field set to ID dynamic content of the trigger. Add a Condition, click "Edit in advanced mode", type the following formula:
@equals(body('Get_item_3')?['ApprovalStatus']?['Value'], 'Yes')
Within "If/yes" branch of Condition, add a "Send an email 2" action (Send approve notification). Within "If/no" branch of Condition, add a "Send an email 3" action (Send reject notification). Under the Condition, add a "Terminate" action, Status set to success
Within Right branch of Parallel branch action, add a "Delay Until" action, Timestamp field set to following formula:
addDays(utcNow(),1)
Note: I assume that send the reminder notification email after 1 Day.
Then add a "Send an email" action to send the reminder notification.
Image reference:


The flow works successfully as below:
Best regards,
Kris