I am sending an email to alias@company.com which is an alias to a real mailbox address. I then connect to the real mailbox (let's say realmailbox@company.com) using MailKit and retrieve messages. When I inspect the To address, all I see is the realmailbox@company.com. How to I see the original alias address that the email was sent to?
For example:
var fullMessage = imapClient.Inbox.GetMessage(uid);
var recipients = fullMessage.To;
recipients only show the realmailbox@company.com, not the alias@company.com.