I'm using the code from here to download attachments from mail using MailKit. In the foreach loop where attachments are retrieved, it is always returning empty. As it is empty it is not entering the foreach loop. Please correct me if i'm doing anything wrong.
var messages = client.Inbox.Fetch(0, -1, MessageSummaryItems.Full | MessageSummaryItems.UniqueId);
int unnamed = 0;
foreach (var message in messages)
{
var multipart = message.Body as BodyPartMultipart;
var basic = message.Body as BodyPartBasic;
if (multipart != null)
{
//Here the attachments is always empty even though my mail has email with attachements
var attachments = multipart.BodyParts.OfType<BodyPartBasic>().Where(x => x.IsAttachment);
foreach (var attachment in attachments)
{
var mime = (MimePart)client.Inbox.GetBodyPart(message.UniqueId.Value, attachment);
var fileName = mime.FileName;
if (string.IsNullOrEmpty(fileName))
fileName = string.Format("unnamed-{0}", ++unnamed);
using (var stream = File.Create(fileName))
mime.ContentObject.DecodeTo(stream);
}
}
else if (basic != null && basic.IsAttachment)
{
var mime = (MimePart)client.Inbox.GetBodyPart(message.UniqueId.Value, basic);
var fileName = mime.FileName;
if (string.IsNullOrEmpty(fileName))
fileName = string.Format("unnamed-{0}", ++unnamed);
using (var stream = File.Create(fileName))
mime.ContentObject.DecodeTo(stream);
}
}
The first thing to note is that MIME is a tree structure and not a flat list. A BodyPartMultipart can contain other BodyPartMultipart children as well as BodyPartBasic children, so when you come across another BodyPartMultipart, you need to descend into that as well.
My guess is that the messages you are examining have nested multiparts and that is why you are having trouble.
Either that or the "attachments" do not have a Content-Disposition header with a value of "attachment".