如何获取与会议请求关联的帐户
本文关键字:关联 请求 会议 何获取 获取 | 更新日期: 2023-09-27 18:36:38
我需要知道与会议请求关联的帐户电子邮件地址(会议请求发送到的电子邮件地址):
string GetAssociatedAccountEmailAddress(Outlook.MeetingItem meetingItem)
{
//TODO: implement this method:
throw new NotImplementedException();
}
这是我尝试过的:
string GetAssociatedAccountEmailAddress1(Outlook.MeetingItem meetingItem)
{
Outlook.MAPIFolder folder = meetingItem.Parent;
Debug.WriteLine("Folder Name: {0}, Folder Path: {1}", folder.Name, folder.FolderPath);
Outlook.MAPIFolder folderParent = folder.Parent;
Debug.WriteLine("Folder Parent Name: {0}, Folder Parent Path: {1}", folderParent.Name, folderParent.FolderPath);
return folderParent.FolderPath.Replace("''", "");
}
调试输出:
Folder Name: Inbox, Folder Path: ''''foo@foo.com'Inbox
Folder Parent Name: foo@foo.com, Folder Parent Path: ''''foo@foo.com
此实现的问题是我不确定文件夹路径是否始终包含电子邮件地址。
我还尝试了以下方法:
string GetAssociatedAccountEmailAddress2(Outlook.MeetingItem meetingItem)
{
Outlook.MAPIFolder folder = meetingItem.Parent;
Outlook.MAPIFolder folderParent = folder.Parent;
Outlook.NameSpace ns = folderParent.Parent;
return ns.Accounts.Cast<Outlook.Account>()
.FirstOrDefault(x => meetingItem.Recipients.Cast<Outlook.Recipient>().Any(r => r.Address == x.SmtpAddress))
.SmtpAddress;
}
这样做的问题是,如果我有两个帐户(foo@foo.com 和 bar@bar.com),并且会议请求被发送到这两个帐户,那么我有两个会议请求,但GetAssociatedAccountEmailAddress2
返回相同的电子邮件地址。
仅供参考:我正在使用VS 2015为Outlook 2013开发Outlook加载项。
几种方法可以做到这一点 -
- 使用
MeetingItem.PropertyAccessor.GetProperty
读取PR_RECEIVED_BY_ENTRYID
属性(不保证存在,DASL 名称http://schemas.microsoft.com/mapi/proptag/0x003F0102
),使用PropertyAccessor.BinaryToString
将其转换为十六进制字符串,使用它调用Application.Session.GetAddressEntryFromID
。请注意,如果项目是从其他商店复制的,则该属性可能与实际商店所有者不匹配。看看OutlookSpy的会议请求(我是它的authot) - 单击IMessage按钮以查看该属性。使用
Store.PropertyAccessor.GetProperty
从父存储 (MeetingItem.Parent.Store
) 读取PR_MAILBOX_OWNER_ENTRYID
属性(DASL 名称http://schemas.microsoft.com/mapi/proptag/0x661B0102
)。酒店不保证存在。如果使用 Redemption(我也是它的作者)是一个选项,它会公开具有Owner
属性的 RDOExchangeMailboxStore 对象(返回 RDOAddressEntry 对象)。