如何使用 VB.NET 从 Lotus Notes 电子邮件获取附件?
我正在尝试使用 NotesDocument
对象的 EmbeddedObjects
数组从 Lotus Notes 电子邮件中检索附件。在我的测试中,我设置了一封带有附件的电子邮件并尝试处理它。 NotesDocument
对象的 HasEmbedded
属性返回 true,但是 NotesDocument
对象的 EmbeddedObjects
数组始终什么都没有(无效的)。
你知道这里会发生什么吗?为什么EmbeddedObjects数组总是什么都没有?
I am trying to retrieve an attachment from a lotus notes email using the EmbeddedObjects
array off of a NotesDocument
object. In my test, I've set up an email with an attachment and am trying to process it. The HasEmbedded
property of the NotesDocument
object is returning true however the EmbeddedObjects
array of the NotesDocument
object is always nothing (null).
Any ideas what could be going on here? Why is the EmbeddedObjects array always nothing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为在我上次的回答中我给出了一个有点不正确的答案。 NotesDocument 的 EmbeddedObjects 属性仅包含嵌入的 OLE 对象,而不包含文件附件。但是,NotesRichTextItem 类有一个embeddedObjects 属性,该属性包含文件附件。因此,如果您知道将保存文件附件的“字段”的名称 - 对于使用标准模板的电子邮件,这将是“正文” - 您可以将该字段作为富文本项获取,然后获取文件附件从那里。这是一个示例:
I think in my last response I gave a somewhat incorrect answer. The EmbeddedObjects property of a NotesDocument only includes embedded OLE objects, and not file attachments. However, the NotesRichTextItem class has an embeddedObjects property which does included file attachments. So, if you know the name of the "field" which will hold your file attachments - and for email using the standard template, this will be "Body" - you can get that field as a rich text item and then get the file attachments from there. Here is a sample:
您可以使用评估(“@AttachmentNames”,doc)来获取文档中的附件列表。通过名称(evaluate 返回一个数组,即使它只有一个),您可以使用 doc.getAttachment 来获取它的句柄。
You can use evaluate("@AttachmentNames", doc) to get the list of attachments in a document. With the names (evaluate returns an array even if it is only one) you use doc.getAttachment to get a handle on it.