开发者

Display options for email

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();


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜