Hello,
I am using the following code to get get attachments
foreach (MimeData attachment in email.Attachments)
{
attachment.FileName;
attachment.ContentType;
attachment.Data;
}
I want to just get just regular attachments with out embedded images/visuals. at the moment it's extraction all the attachments (regular and embedded also). How can I get this done?
Thank you