0
Visual Studio 2015ですべての電子メールをコンソールに出力するC#コンソールアプリケーションを作成しています。私はMAPIFolderオブジェクトを作成しようとすると問題が発生します。私はこのポストのコードを使用した:Read emails from non default accounts in Outlook。名前空間を使用して既定のアカウントからMAPIFolderオブジェクトを作成できますが、ストアを使用してフォルダオブジェクトを作成することはできません。デフォルト以外のOutlook 2007アカウントでC#でMAPIFolderオブジェクトを作成
using Microsoft.Office.Interop.Outlook;
using static System.Console;
namespace MoveEmailsDriver
{
class ProcessEmails
{
static void Main(string[] args)
{
PrintEmailBody();
}
public static void PrintEmailBody()
{
Application app = new Application();
_NameSpace ns = app.GetNamespace("MAPI");
Stores stores = ns.Stores;
foreach(Store store in stores)
{
MAPIFolder inboxFolder = store.GetDefaultFolder(OlDefaultFolders.olFolderInbox);
foreach(MailItem item in inboxFolder.Items)
{
WriteLine(item.Body);
}
}
}
}
}
This is the exception error I am getting.