I have a requirement to send email through my web application. So far I've used System.Net.Mail no problem, however if the users want to send email to people they are used to knowing only through outlook, how can they do this?
Basically I need something that will allow them to supply initial letters of the receiver's last name and then perform a lookup to see what their AD email address is - so some sort of search and retrieve. Outlook does this nicely - how do I integrate this in C#? I know I need to reference the Microsoft Outlook 10.0 Object Library, Create Outlook application, Get Mapi NameSpace and Logon, but how to get a specific user's email address?
Start Free Trial