使用C#将.msg文件导入Outlook自定义文件夹

问题描述:

我需要使用VSTO插件C#将.msg文件添加到Outlook自定义文件夹中

I need to add the .msg files to outlook custom folder using VSTO addin c#

Outlook.Application objOutlook = new Outlook.Application(); Outlook.MailItem email =(Outlook.MailItem)objOutlook.Session.OpenSharedItem(strFilePath); Outlook.MailItem movingItem = email.Move(ParentFolder);

Outlook.Application objOutlook = new Outlook.Application(); Outlook.MailItem email = (Outlook.MailItem)objOutlook.Session.OpenSharedItem(strFilePath); Outlook.MailItem movedItem = email.Move(ParentFolder);