【发布时间】:2017-05-11 21:06:56
【问题描述】:
我正在向 alias@company.com 发送电子邮件,这是真实邮箱地址的别名。然后,我使用 MailKit 连接到真实邮箱(比如 realmailbox@company.com)并检索邮件。当我检查收件人地址时,我看到的只是 realmailbox@company.com。如何查看电子邮件发送到的原始别名地址?
例如:
var fullMessage = imapClient.Inbox.GetMessage(uid);
var recipients = fullMessage.To;
收件人只显示 realmailbox@company.com,而不是 alias@company.com。
【问题讨论】: