延迟通过 IMAP 发送和接收的电子邮件

Delay emails sent and received through IMAP

我想将用户收到的电子邮件放在我的应用程序中 "review status",让用户手动选择是否允许他们通过。

为此,我需要过滤网络流量以阻止使用 IMAP 协议从 Outlook 接收电子邮件并在稍后发送它们。发送的电子邮件也是如此。

这可以在 Windows 7 月 8 日的 Outlook 上完成吗?还是过滤掉邮件后,Outlook 收不到邮件?

Outlook 对象模型不提供任何用于窃取电子邮件的功能。

相反,您可以考虑在处理 NewMailEx event which is fired when a new item is received in the Inbox. For example, you may develop a VBA macro for doing any customizations in Outlook programmatically. See Getting Started with VBA in Outlook 2010 的代码中以编程方式处理新电子邮件以获取更多信息。