MimeKit を使用している場合、添付コンテンツを取得するにはどうすればよいですか? これは私が持っているものです:
var mimeMessage = MimeMessage.Load(@"test.eml");
var attachments = mimeMessage.Attachments.ToList();
foreach (var attachment in attachments)
{
// how do I get the content here (array of bytes or stream)
}