Exportar Email
Contents
[
Hide
]
VSTO
Abaixo está o código para exportar email usando VSTO Outlook.
string FilePath = @"E:\Aspose\Aspose VS VSTO\Sample Files\ExportEmail.msg";
// Criar a classe Application e obter o namespace
Outlook.Application outlook = new Outlook.Application();
Outlook.NameSpace ns = outlook.GetNamespace("Mapi");
object _missing = Type.Missing;
ns.Logon(_missing, _missing, false, true);
// Obter informações da Caixa de Entrada no objeto do tipo MAPIFolder
Outlook.MAPIFolder inbox = ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderInbox);
Outlook.MailItem item = inbox.Items[0];
item.SaveAs(FilePath,_missing);
Aspose.Email
Abaixo está o código para exportar email usando aspose.email para .NET.
string FilePath = @"E:\Aspose\Aspose VS VSTO\Sample Files\ExportEmail.msg";
//Criar uma instância da classe MailMessage
MailMessage msg = new MailMessage();
//Exportar para o formato MHT
msg.Save(FilePath, SaveOptions.DefaultMsg);