Extracting Attachment
Contents
[
Hide
]
VSTO
Below is the code to extract attachment using VSTO Outlook.
string AttachmentFilePath = @"E:\Aspose\Aspose VS VSTO\Sample Files\";
// Create Application class and get namespace
Outlook.Application outlook = new Outlook.Application();
Outlook.NameSpace ns = outlook.GetNamespace("Mapi");
object _missing = Type.Missing;
ns.Logon(_missing, _missing, false, true);
// Get Inbox information in objec of type MAPIFolder
Outlook.MAPIFolder inbox = ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderInbox);
Outlook.MailItem item = inbox.Items[0];
for (int i = 1; i <= item.Attachments.Count; i++)
{
item.Attachments[i].SaveAsFile(AttachmentFilePath + item.Attachments[i].FileName);
}
Aspose.Email
Below is the code to extract attachment using aspose.email for .NET.
string FilePath = @"E:\Aspose\Aspose VS VSTO\Sample Files\ExtractAttachment.msg";
string AttachmentFilePath = @"E:\Aspose\Aspose VS VSTO\Sample Files\";
//Create an instance of MailMessage and load an email file
MailMessage mailMsg = MailMessage.Load(FilePath, MailMessageLoadOptions.DefaultEml);
foreach (Attachment attachment in mailMsg.Attachments)
{
//To display the the attachment file name
attachment.Save(AttachmentFilePath+attachment.Name);
Console.WriteLine(attachment.Name);
}
mailMsg.From = "sender@sender.com";
mailMsg.To.Add("receiver@receiver.com");
SmtpClient client = new SmtpClient("smtp.server.com");
client.Port = 25;
client.Username = "UserName";
client.Password = "password";
{
client.Send(mailMsg);
}