Outlook 2010 隱藏式密件副本中顯示的已傳送項目

Outlook 2010 隱藏式密件副本中顯示的已傳送項目

我需要在 Outlook 2010 的已傳送專案中隱藏密件副本。

因此,在發送時,我看不到密件副本將發送至 HOD,但如果我雙擊已發送的項目,它會顯示密件副本。有辦法隱藏它嗎?或者也許我可以修改腳本來隱藏地址。

使用的腳本

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

相關內容