I have a requirement in my web application to all show particular page to people who are member of particular DL.
kindly help me on the below code i'm not able to assign dl mail addesser.
private void GetDistributionListMembers()
{
string test = "test@mail.com";
Outlook.AddressEntry addrEntry == ???
Outlook.ExchangeDistributionList exchDL = addrEntry.GetExchangeDistributionList();
Outlook.AddressEntries addrEntries = exchDL.GetExchangeDistributionListMembers();
if (addrEntries != null)
foreach (Outlook.AddressEntry exchDLMember
in addrEntries)
{
//Debug.WriteLine(exchDLMember.Name);
}
}
}