英文:
Change the mailbox name when creating a new profile with ProfMan
问题
我正在使用ProfMan创建一个具有多个Exchange邮箱的Outlook配置文件。
每个邮箱都使用"Microsoft Exchange"作为邮箱名称,而不是使用电子邮件地址,这使得在Outlook的"发送"字段中无法区分它们。
我一直在尝试找到正确的ProfSect项进行更新,但无法确定是哪一个。
英文:
I'm using ProfMan to create an Outlook Profile with multiple exchange mailboxes.
Each mailbox is creating with a mailbox name of 'Microsoft Exchange' instead of the email address this makes it impossible to tell them apart in the Outlook 'send as' field.
I've been trying to find the correct ProfSect item to update but cant figure out which one it is.
答案1
得分: 0
账户名称不再存储在MAPI配置文件会话中;Outlook使用IOlkAccountManager
。创建新账户后,可以从RDOSession.Accounts
集合中检索它,并设置RDOAccount.Name
属性。
请注意,如果Outlook正在运行,IOlkAccountManager
在调用RDOSession.Accounts.RefreshFromMAPI
之前将无法看到它(该方法尚未公开提供,将在即将发布的6.5版本中提供)。
英文:
The account name is no longer stored in the MAPI profile session; Outlook uses IOlkAccountManager
. After creating a new account, you can retrieve it from the RDOSession.Accounts
collection and set the RDOAccount.Name
property.
Keep in mind that if Outlook is running IOlkAccountManager
won't see it until you call RDOSession.Accounts.RefreshFromMAPI
(not yet publicly available - it will be in the upcoming version 6.5).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论