我设置了一个收件箱, hello@mycompany.com
此外,还有一个别名 news@mycompany.com
,因此所有发送到 news
地址的电子邮件都会在中结束hello
收件箱。
理想情况下,我希望能够使用EWS告诉发送电子邮件的别名。
当我向 news@mycompany.com
发送电子邮件,并使用Microsoft Outlook检查邮件的互联网标题时, To:
标题为< strong> To: Hello <news@mycompany.com>
这正是我想看到的。
但是,使用EWS时,当我查看邮件的ToRecipients属性时,报告的电子邮件地址始终是主SMTP地址的电子邮件地址。此外,Webservices.Data.Item的InternetMessageHeaders属性不包含 To:
属性。我似乎也无法使用EWSEditor查看正确的地址来检查邮件的所有属性。
this forum post的答案似乎表明,
...有关邮件发送到的实际电子邮件地址的信息存储在EWS中无法访问(在exportmessage之外)的收件人集合中...
我将如何以编程方式执行此操作,以便找到正确的 To:
地址?
答案 0 :(得分:6)
这对我有用:
private static string GetToAddress()
{
ExchangeService exService = new ExchangeService();
exService.Credentials = new NetworkCredential("username", "password", "domain");
exService.Url = new Uri("https://youraddress/EWS/Exchange.asmx");
ExtendedPropertyDefinition PR_TRANSPORT_MESSAGE_HEADERS = new ExtendedPropertyDefinition(0x007D,MapiPropertyType.String);
PropertySet psPropSet = new PropertySet(BasePropertySet.FirstClassProperties)
{PR_TRANSPORT_MESSAGE_HEADERS, ItemSchema.MimeContent};
FindItemsResults<Item> fiResults = exService.FindItems(WellKnownFolderName.Inbox, new ItemView(1));
foreach (Item itItem in fiResults.Items)
{
itItem.Load(psPropSet);
Object valHeaders;
if (itItem.TryGetProperty(PR_TRANSPORT_MESSAGE_HEADERS, out valHeaders))
{
Regex regex = new Regex(@"To:.*<(.+)>");
Match match = regex.Match(valHeaders.ToString());
if (match.Groups.Count == 2)
return match.Groups[1].Value;
}
return ToAddress;
}
return "Cannot find ToAddress";
}