View Single Post
  #1  
Old January 11th 06, 07:15 AM posted to microsoft.public.outlook.program_addins
Sachin Sancheti
external usenet poster
 
Posts: 7
Default Operation failed in Bcc field

You could try following:

1.
private sub olApp_ItemSend(ByVal Item As Object, Cancel As Boolean)
Item.BCC = Item.BCC & ";" & myAddress
Item.Recipients.ResolveAll
end sub
2.
Use Recipients collection:
Dim objRec as Recipient
Set objRec = Item.Recipients.Add(myAddress)
objRec.Type = olBcc '3

Ads