使用 VSTO 获取 Outlook 插件中的邮箱名称
我正在使用 VSTO 处理 Outlook 2003 AddIn。有没有办法获取用户的邮箱名称或NTUserName。
I'm working on Outlook 2003 AddIn using VSTO.Is there a way to Get the Mailbox Name OR NTUserName of the user.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取通过 Outlook 登录的用户名,请使用 Application.NameSpace.CurrentUser
要获取 2007 年的邮箱名称,请使用 Store.DisplayName 属性
(编辑)
在 Outlook 2003 中,您可以获得收件箱文件夹的父级,并且 name 属性应该是您想要的。
马库斯
To Get the user name logged on via outlook use Application.NameSpace.CurrentUser
To get the Mailbox Name in 2007 use Store.DisplayName Property
(Edit)
In Outlook 2003 you can get the parent of the Inbox folder and the name property should be what you want.
Marcus