Eu preciso ocultar o BCC nos itens enviados para o Outlook 2010. Estou usando um script automático do BCC.
Então, ao enviar, não consigo ver que o BCC está indo para o HOD, mas, se eu clicar duas vezes nos itens enviados, ele mostrará o BCC. Existe uma maneira de esconder isso? Ou pode ser se eu puder modificar o script para ocultar o endereço.
Script usado
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