如何读取C#中邮件的附件的html主体?

时间:2015-06-15 13:23:04

标签: outlook outlook-addin

所以问题是我需要获取附件邮件的HTML正文,但不知道从哪里开始。试过(MailItem)附件, 在附件属性中搜索,保存到文件和检索数据对我来说并不适用。是否可以使用PropertyAccessor检索数据?

主要问题是我如何检索html主体的附件(即.msg / .eml类型)?

1 个答案:

答案 0 :(得分:1)

You can

  1. Save the attachment first as an MSG file (Attachment.SaveAsFile), then open the MSG file using Namespace.OpenSharedItem.

  2. If you using Redemption is an option, it allows to access embedded message attachment directly using RDOAttachment.EmbeddedMsg property.