如何使用 C# 编辑内联图像的 mapi 属性 内容配置?

How do i edit the mapi property content disposition for inline image using c#?

我正在尝试向 HTML 正文添加内联图像。如何编辑内容处置 ID。目前它把它当作普通附件而不是嵌入式附件?

        string file = GetImageBytes();
        Redemption.Attachment att = mail.Attachments.Add(file, 1, null, "logo");
        att.Fields[0x3712001E] = "image.logo";
        mail.Commit();
        RDOMail msg = Globals.ThisAddIn.session.GetMessageFromID(mailItem.Item.EntryId);

        mail.Item.HTMLBody = CreateHTMLBody(msg, sender, nvd_sii, recipient);

我想将上述附件添加为内联附件。有什么方法可以使用兑换来实现吗?

我没有设置内容配置 属性,而是将 PR_ATTACH_FLAGS“http://schemas.microsoft.com/mapi/proptag/0x37140003”设置为 4(对于嵌入图像)。这解决了这个问题。下面的代码有效

        string file = GetImageFile();
        Redemption.Attachment att = mail.Attachments.Add(file);
        att.Fields[0x3712001E] = "image.logo";
        att.Fields[0x37140003] = 4;
        mail.Commit();
        System.IO.File.Delete(file);
        RDOMail msg = Globals.ThisAddIn.session.GetMessageFromID(mailItem.Item.EntryId);


        mail.Item.HTMLBody = CreateHTMLBody(msg, sender, nvd_sii, recipient);