使用以下代码将 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
(新队)