
Howto trap MAPIFolder.Items.ItemAdd on Sent Items Folder
Ha HA ha, I just wanted to prove a friend wrong, she said it could not be
done in the client machine, that I needed to buy an expensive mail server
like exchange 2000, thanks to all for your help!!!
:-)
Quote:
> > Hi,
> > I used the following code to send a Blind carbon copy mail message
> > programmatically, but I don't wat the mail address in the BCC field to
> > apear after the message has been sent and move to the sent items
folder.Can
> > anyone post some sample code???
> > My code so far, Thanks in advanced!
> > Private Sub Application_ItemSend(ByVal Item As Object, Cancel As
Boolean)
> > Dim objMe As Recipient
> > objMe.Type = olBCC
> > objMe.Resolve
> > Set objMe = Nothing
> > End Sub
> > >>Dmitry Streblechenko (MVP) Wrote!!
> > >>http://www.dimastr.com/
> > >>You can't: it is a calculated property. You need to explicitly delete
each
> > >>BCC
> > >>recipient after the message has been sent. Trap
MAPIFolder.Items.ItemAdd
Quote:
> > >>event
> > >>on the Sent Items folder and modify the message.
> > >>Thomas Quester Wrote!!
> > >>www.outlookfolders.com
> > >>Perhaps you must delete the PR_DISPLAY_BCC field before or after
sending
> Why do you not want to see the BCC. Do you use it legally ??? or are
> you going to install this on your girlfriends computer :-)
> BTW i have the same question.