
Necesito ocultar BCC en los elementos enviados para Outlook 2010. Estoy usando un script BCC automático.
Entonces, mientras envío, no puedo ver que BCC vaya al HOD, pero si hago doble clic en los elementos enviados, muestra BCC. ¿Hay alguna manera de ocultarlo? O tal vez si puedo modificar el script para ocultar la dirección.
Guión utilizado
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