0
我想在Exchange Web服務中獲取郵件的收件人地址。如何獲得在.NET中的Exchange Web服務的地址?
這裏是我的代碼:
string _ToAddress =string.Empty;
foreach (Item _MailItem in findResults.Items)
{
_ToAddress = _MailItem.DisplayTo.ToString();
}
它返回這樣的郵件地址的別名My_Mail_Id 而不是[email protected]
如何獲取郵件地址作爲完整的地址