Outlook 2010 隐藏我的密件抄送中显示的已发送项目

Outlook 2010 隐藏我的密件抄送中显示的已发送项目

我需要在 Outlook 2010 的已发送邮件中隐藏密件抄送。我正在使用自动密件抄送脚本。

因此,在发送时我看不到 BCC 发往 HOD,但如果我双击已发送的项目,它会显示 BCC。有没有办法隐藏它?或者我可以修改脚本来隐藏地址。

使用的脚本

x--------------------------------x----...
Dim objRecip As Recipient 
Dim strMsg As String 
Dim res As Integer 
Dim strBcc As String 
On Error Resume Next 

' #### USER OPTIONS #### 
' address for Bcc -- must be SMTP address or resolvable 
' to a name in the address book 
strBcc = "[email protected]" 

Set objRecip = Item.Recipients.Add(strBcc) 
objRecip.Type = olBCC 
If Not objRecip.Resolve Then 
strMsg = "Could not resolve the Bcc recipient. " & _ 
"Do you want still to send the message?" 
res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _ 
"Could Not Resolve Bcc Recipient") 
If res = vbNo Then 
Cancel = True 
End If 
End If 

Set objRecip = Nothing

相关内容