views:

46

answers:

1

I am displaing one particular mail message. I wonder if i can change display preferences. I want to change options to display pictures embedded in mail body. I access to mail in that way:

Outlook.Application outLookApp = new Outlook.Application();
Outlook.Inspector inspector = outLookApp.ActiveInspector();
Outlook.NameSpace nameSpace = outLookApp.GetNamespace("MAPI");
Outlook.MAPIFolder inbox = nameSpace.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderInbox);
Outlook.MailItem item = inbox.Items[1];
item.Display();
+1  A: 

There might be a workaround to create something you are talking about with this email display. Like create your own displayer of the MailItem. But there is no way that I can find to turn it on and off. You can dig here to find out deeper features of the Outlook libraries. You might try to find the settings here and see if they give a way to change them.

Jimmie Clark