An Azure service that automates the access and use of data across clouds without writing code.
@Anonymous Thanks for reaching out.
There is no configuration for When a new email arrives (V3) that can be used to specify the polling frequency. This is the know limitation as documented here.
Triggers fire on the corresponding event's occurrence almost immediately in most cases, but there could be rare circumstances when the trigger's delay to fire may take up to one hour.
Sharing in more details how the trigger works.
- Trigger registers a subscription (Webhook) with mailbox to receive updates whenever there is an email arrived at mailbox. Trigger renews the existing subscription every one hour
- Trigger returns 202 response with Retry-After interval of 60 minutes. It is similar to normal polling trigger but with a long interval.
- If a new email arrives within this 60 minutes interval, then the connector receives a notification from Graph API (webhook callback). After that It sends request back to Flow/LA telling it that new poll request should happen right away.
- If the connector doesn’t receive any notifications within 60 minutes interval, then new poll request will happen exactly after 60 minutes to make sure there are no new emails in the specified mailbox.
The alternative could be if your business needs can be done using the shared mailbox which has the option to set the internal for V2 action When a new email arrives in a shared mailbox (V2)
Hope the above clears things up. Let me know if you have any queries or concerns.