英文:
How Does When a new email arrives in a shared mailbox (V2) Polling Internally Work
问题
我正在进行关于Logic App中的“当共享邮箱(V2)收到新邮件”轮询功能的POC,以监视共享邮箱。但我有一些查询,无法在任何在线门户中找到解决方案。
- 该功能的内部功能是什么?
- 它如何检索添加到邮箱中的邮件?它是基于未读邮件还是上次轮询时间之后到达的邮件?
- 如果上次轮询失败,Logic App是否会从上一次运行轮询,还是仅从当前运行轮询?
请帮忙,因为我在这些主题上找不到相关讨论。
英文:
I am doing POC on 'When a new email arrives in a shared mailbox (V2)' polling feature in logic app to monitor the share mailbox. But i have some queries which i could not find resolution in any online portal.
- What is the internal functioning on this feature.
- How does it retrieve the emails which are added in the mailbox? Is it based on the unread mails or mails arrived after last polling time?
- If the last polling failed then will Logic app poll from previous run or only the current run.
Please help as I could not find any relevant discussion online on these topics.
答案1
得分: 0
- 它在内部使用了 Microsoft Graph API。
- 它会跟踪最后一次成功的轮询,并在此之后检查新消息。
- 这不是触发器自己完成的。您可以设置重试策略来重试操作中的失败。
英文:
- It uses the Microsoft Graph APIs internally
- It keeps track of the last successful poll and checks for new messages after that
- This is not done by the trigger on its own. You can set up retry policies to retry failures in actions.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论