1

使用以下代码将 winmail.dat 文件的 rtf 正文添加为已保存电子邮件的附件,而不是正文:

using (Stream stream = File.Open(path, FileMode.Open, FileAccess.Read, FileShare.None))
{
    MimeKit.MimeMessage mimeMessage = MimeKit.MimeMessage.Load(stream);

    int i = 1;
    foreach (MimeKit.MimePart attachment in mimeMessage.Attachments)
    {
        if (attachment.GetType() == typeof(MimeKit.Tnef.TnefPart))
        {
            MimeKit.Tnef.TnefPart tnefPart = (MimeKit.Tnef.TnefPart)attachment;

            MimeKit.MimeMessage tnefMessage = tnefPart.ConvertToMessage();
            tnefMessage.WriteTo(path + $"_tnefPart{i++}.eml");
        }
    }
}

我怎样才能解决这个问题?


查看Attachments它不存在,但附件和 body.rtf 文件存在于BodyParts. 所以我可以像这样得到 body.rtf 文件:

int b = 1;
foreach (MimeKit.MimeEntity bodyPart in tnefMessage.BodyParts)
{
    if (!bodyPart.IsAttachment)
    {
        bodyPart.WriteTo(path + $"_bodyPart{b++}.{bodyPart.ContentType.MediaSubtype}");
    }
}

旁注:body.rtf 文件是否不是真正的 rtf,因为它以以下内容开头:

内容类型:文本/rtf;名称=正文.rtf

(新队)

4

1 回答 1

2

您获得Content-Type标头的原因是因为您正在编写 MIME 信封以及内容。

你需要做的是:

int b = 1;
foreach (MimeKit.MimeEntity bodyPart in tnefMessage.BodyParts)
{
    if (!bodyPart.IsAttachment)
    {
        var mime = (MimeKit.MimePart) bodyPart;
        mime.ContentObject.DecodeTo(path + $"_bodyPart{b++}.{bodyPart.ContentType.MediaSubtype}");
    }
}
于 2017-02-16T00:46:20.020 回答