我需要在Outlook 2010的已发送项目中隐藏BCC。我正在使用自动BCC脚本。
因此,虽然发送我无法看到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 = "someone@email.com"
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
1
我可以知道你为什么需要那个? BCC仅为您显示。即使对您的邮箱具有完全访问权限的管理员也无法看到它。
—
thims
我同意你的意见,除非你修改服务器/你的电脑上的电子邮件消息,否则你不能删除BCC(不要这样做,Outlook不会那样)。唯一可以看到它的人就是你,我不明白为什么你要隐藏这个,因为你显然已经知道它正在发生。
—
cascer1