VSTO Outlook 高级搜索中可用的所有属性

发布于 2024-12-17 01:15:39 字数 309 浏览 0 评论 0原文

我在 C# 中将 VSTO 与 Outlook 2007 一起使用。我可以执行 Outlook.Application.AdvancedSearch() 并获取一个表。我想使用 Outlook.Table.Columns.Add() 从表中选择要访问的列。我似乎找不到可以传递给 Add() 的属性名称的完整列表(我只对邮件项目感兴趣)。我猜出了一些明显的(ReceivedTime、SenderEmailAddress、To、Subject、Body、EntryID)。我希望能够获取每封电子邮件的(纯文本)正文,但尝试添加属性正文似乎不起作用。是否不可能将 Body 作为列,或者只是使用不同的名称?

I'm using VSTO with Outlook 2007, in c#. I can execute an Outlook.Application.AdvancedSearch(), and get a table. I want to select the columns to access from the table using Outlook.Table.Columns.Add(). I can't seem to find a complete list of property names that I can pass to Add() (I'm only interested in mail items). I've guessed a few of the obvious ones (ReceivedTime, SenderEmailAddress, To, Subject, Body, EntryID). I was hoping to be able to get the (plain text) body of each email, but trying to add the property Body doesn't seem to work. Is it impossible to get Body as a column, or is it just under a different name?

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

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

发布评论

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

评论(1

故人的歌 2024-12-24 01:15:39

页面表对象或表过滤器中不支持的属性表示正文应该适用于前 255 个字节。这对我不起作用,但即使有用,那也不是我想要的。因此,我获取 EntryID 属性,然后使用 mapiNameSpace.GetItemFromID(entryId, Type.Missing) 获取 MailItem 对象,并获取来自 MailItem.Body 的(整个)纯文本正文。

The page Unsupported Properties in a Table Object or Table Filter says that Body should work for the first 255 bytes. That didn't work for me, but even if it did, that's not what I want. Thus, I get the EntryID property, then use mapiNameSpace.GetItemFromID(entryId, Type.Missing) to get the MailItem object, and get the (entire) plain-text body from MailItem.Body.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文