How to get To address in Exchange Web service in .NET?
I want to get the To Address of mail in Exchange Web service.
Here is my code:
string _ToAddress =string.Empty;开发者_StackOverflow
foreach (Item _MailItem in findResults.Items)
{
_ToAddress = _MailItem.DisplayTo.ToString();
}
It returns alias of the mail Address like this My_Mail_Id Instead of My_Mail_Id@MyDomain.com
How to Get Mail Address as full address
To get the To address you need to load the ToRecipients property of the mail item. This property stores a collection of recipients. The property has an address field which holds the email address of the recipient.
Thanks, Niall
精彩评论