我想从 mime 消息中下载文本和 html 部分并将其存储在数据库中,然后如果需要下载附件。我需要这个,因为我不想将附件存储在我的数据库中以节省磁盘空间和带宽。稍后将按需下载它们。我不确定我是否可以这样做并且仍然能够使用 MimeKit 中的 MimeParser
我打算这样做:
- 获取消息正文结构并找到文本和 html 部分
- 使用 ImapFolder.GetStream 下载文本和 html 正文部分,并通过保存部分名称和标题将其存储在数据库中,以保留 mime 树结构。不会下载附件
稍后我想在 UI 中显示消息,但我想延迟解析,直到邮件消息需要在 UI 中显示。
这是我到目前为止的进步
var msgSummaries = remoteFolder.Fetch(new int[] { remoteMessage.Index }, MessageSummaryItems.BodyStructure);
var stream = remoteFolder.GetStream(remoteMessage.Index, msgSummaries[0].HtmlBody.PartSpecifier);
//at this point i am saving the stream to the database and later i am trying to convert it to mime entity like that
var parser = new MimeParser(ParserOptions.Default, stream, true);
var mimeEntity = parser.ParseEntity(cancellationToken);
不幸的是,流不包含 mime 部分标头,无法解析,我看不到像这样在 GetStream 方法中请求标头的选项
获取 1 (BODY.PEEK[2.MIME] BODY.PEEK[2])
有什么建议么?