Hi @Dorul,
Do you want to move emails from a specific sender to a folder after you’ve read them?
Please take a try with the following flow.
Add the trigger When a new email arrives.
Add a Condition with the following code to filter emails come from a specific person and check if they’ve been read already:
@and(equals(triggerBody()?['From'], 'xxxxx@microsoft.com'),equals(triggerbody()?['IsRead'],bool('True')))
Under if yes branch, move the file to a folder.
Besides, not sure whether the mail will be read once it arrives, you could add an action Delay to wait for several minutes then move on to the following actions.
Image for your reference:
Best regards,
Mabel