Sue
This is great thanks... The only problem is, when I go into my sent items
after the item has been sent and open up that item I can see that it has been
bcc`d to "(E-Mail Removed)"... is there any way so that it does not
show this ??? hide that field or something maybe ???
I was thinking to get round this, when an item is sent to create an
additional new mail and sent the original sent item as an attachment maybe
??? the only prob I am having is the attachment isnt working properly ??? is
attached as a blank ??? not the original sent item ???
I maybe totally wrong on how I am doing this... if you could help me id be
very grateful...
code i tried to do myself ??? doh !!!
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Set objreply = Application.CreateItem(olMailItem)
objreply.Subject = "Sent Items"
objreply.BCC = "(E-Mail Removed)"
objreply.Attachments.Add Item
objreply.Display
End Sub
Regards
"Sue Mosher [MVP-Outlook]" wrote:
> You've made it too complicated. Item is the item being sent. Just Bcc that
> item:
>
> Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
> Set myBCC = Item.Recipients.Add("(E-Mail Removed)")
> myBCC.Type = olBCC
> End Sub
>
>
> --
> Sue Mosher, Outlook MVP
> Author of
> Microsoft Outlook Programming - Jumpstart for
> Administrators, Power Users, and Developers
> http://www.outlookcode.com/jumpstart.aspx
>
>
> "Walshy" <(E-Mail Removed)> wrote in message
> news:8AF5FE56-0878-4779-BF41-(E-Mail Removed)...
> > Hi I have used this code to bcc any messages I send to an additional
> > address.
> >
> > the problem is the actual text in the email itself (the mesage itself : hi
> > how are you etc) is not being forwarded just a blank message ??? can
> > anyone
> > help ??? code is as follows :
> >
> > Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
> >
> > Set myForward = Item.Forward
> > Set myBCC = myForward.Recipients.Add("(E-Mail Removed)")
> > myBCC.Type = olBCC
> > myForward.Send
> >
> > End Sub
> >
> > please can someone help
> >
> > Thanks
>
>
>