VSTO邮件发送事件

发布于 2024-12-15 09:35:38 字数 554 浏览 0 评论 0原文

我在使用 VSTO 时遇到一个小问题。我需要获取已发送的邮件并保留其内容。有没有类似的 MailSent 事件?

我目前找到的唯一解决方案是在 SentItems 文件夹上连接 ItemAdd 事件。

Outlook.Folder sentItems =
     Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderSentMail)
    as Outlook.Folder;
sentItems.Items.ItemAdd += new ItemsEvents_ItemAddEventHandler(SentItemFolder_ItemAdd);

private void SentItemFolder_ItemAdd(object addedItem)
{
    Outlook.MailItem newItem = (Outlook.MailItem)addedItem;

    MessageBox.Show(newItem.EntryID);
}

这真的是唯一的方法还是你们知道任何更优雅的解决方案?

I have a small problem with VSTO. I need to get the sent mail and persist the content of it. Is there a kind on MailSent event?

The only solution I found for now is hooking up the ItemAdd event on SentItems folder.

Outlook.Folder sentItems =
     Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderSentMail)
    as Outlook.Folder;
sentItems.Items.ItemAdd += new ItemsEvents_ItemAddEventHandler(SentItemFolder_ItemAdd);

private void SentItemFolder_ItemAdd(object addedItem)
{
    Outlook.MailItem newItem = (Outlook.MailItem)addedItem;

    MessageBox.Show(newItem.EntryID);
}

Is this really the only way or any of you know any more elegant solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悲歌长辞 2024-12-22 09:35:38

您可以使用 ItemSend 事件来实现此目的,如下所示:

private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
    this.Application.ItemSend += new Microsoft.Office.Interop.Outlook.ApplicationEvents_11_ItemSendEventHandler(Application_ItemSend);
}


private void Application_ItemSend(object Item, ref bool Cancel)
{
    // Code to run when item is being sent
}

You can use the ItemSend event for this, like so:

private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
    this.Application.ItemSend += new Microsoft.Office.Interop.Outlook.ApplicationEvents_11_ItemSendEventHandler(Application_ItemSend);
}


private void Application_ItemSend(object Item, ref bool Cancel)
{
    // Code to run when item is being sent
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文