I got a new task to identify any features exist in the Microsoft Exchange server such that when a new mail has come to [email protected] email id then Exchange server should trigger a web service.
Exchange Web Services (EWS) in Exchange 2010
EWS Managed API:
using Microsoft.Exchange.WebServices.Data;
private static bool RedirectionUrlValidationCallback(string redirectionUrl)
{
bool result = false;
Uri redirectionUri = new Uri(redirectionUrl);
if (redirectionUri.Scheme == "https")
{
result = true;
}
return result;
}
Thanks