MailKit没有拿起"自动提交:自动回复"头

时间:2017-02-17 09:01:42

标签: c# imap mailkit

我正在使用MailKit阅读邮件但由于某种原因我无法读取Auto-Submitted: auto-replied标题。读取其他标题没有问题。还有其他人经历过这个吗?

获取电子邮件的代码:

var inbox = imapClient.Inbox;
inbox.Open(FolderAccess.ReadOnly);

var uids = inbox.Search(SearchQuery.NotSeen);

return uids.Select(id => new ImapMessage()
{
    ImapId = id.Id,
    MimeMessage = inbox.GetMessage(id)
});

https://github.com/jstedfast/MailKit

消息:

enter image description here

通过Outlook看到相同的消息,此处显示Auto-Submitted: auto-replied标题。

enter image description here

0 个答案:

没有答案