I am currently sending email from my C# windows application using System.Net.Mail by creating a SmtpClient.
However, I am being asked to use the Exchange Mail Server's "User names" instead of the actual email addresses. The SmtpClient method of sending mail does not seem to be able to do this.
I am told that another developer working with another language and development environment can do this. I asked him how and he said he uses MAPI.
Are there any built-in classes in DotNet for C# to use MAPI
My goal is to pass the mail server the user names instead of the actual email addresses.
Any help or direction is appreciated!