有没有办法在使用 MailKit c# 时将电子邮件另存为文件?

Is there a way to save the email as a file while using MailKit c#?

我想将整个电子邮件与所有 headers 一起保存到磁盘,而不是使用 MimeKit 中继到 SMTP 服务器,这可能吗?

我知道消息本身可以写入文件。

是的。你可以这样做:

message.WriteTo (fileName);