我在 Outlook 2010 中设置密件抄送字段时遇到问题。这是我的情况(使用 Microsoft.Office.Interop.Outlook):
string bcc = "example@example.com";
Recipient recipient = mailItem.Recipients.Add(bcc); // Add the recipient address
recipient.Type = (int)OlMailRecipientType.olBCC; // Set the type to BCC
mailItem.Display(false); // Display the email in Outlook
string addedBCC = mailItem.BCC; // Check that the BCC property gets set
这在 Outlook 2007 中运行良好,但在 Outlook 2010 中,地址出现在“收件人”字段而不是“密件抄送”字段中。变量 addedBCC 包含与密件抄送相同的文本。我在这里做错了吗?
实际问题是,当添加多个不同类型的收件人时,在 Outlook 2010 中显示撰写窗口时,最后添加的收件人总是会出现在 TO 字段中。