
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 = "[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