当新邮件到达共享邮箱(V2)时,内部轮询是如何工作的。

huangapple go评论59阅读模式
英文:

How Does When a new email arrives in a shared mailbox (V2) Polling Internally Work

问题

我正在进行关于Logic App中的“当共享邮箱(V2)收到新邮件”轮询功能的POC,以监视共享邮箱。但我有一些查询,无法在任何在线门户中找到解决方案。

  1. 该功能的内部功能是什么?
  2. 它如何检索添加到邮箱中的邮件?它是基于未读邮件还是上次轮询时间之后到达的邮件?
  3. 如果上次轮询失败,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.

  1. What is the internal functioning on this feature.
  2. 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?
  3. 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

  1. 它在内部使用了 Microsoft Graph API。
  2. 它会跟踪最后一次成功的轮询,并在此之后检查新消息。
  3. 这不是触发器自己完成的。您可以设置重试策略来重试操作中的失败。
英文:
  1. It uses the Microsoft Graph APIs internally
  2. It keeps track of the last successful poll and checks for new messages after that
  3. This is not done by the trigger on its own. You can set up retry policies to retry failures in actions.

huangapple
  • 本文由 发表于 2023年6月5日 16:29:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/76404683.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定