PC Review Forums Newsgroups Microsoft Outlook Microsoft Outlook VBA Programming bcc any messages sent replied or forwarded to another mail address

Reply

bcc any messages sent replied or forwarded to another mail address

 
Thread Tools Rate Thread
Old 05-11-2004, 11:46 AM   #1
=?Utf-8?B?V2Fsc2h5?=
Guest
 
Posts: n/a
Default bcc any messages sent replied or forwarded to another mail address


How can I sent it so that and messages I send, reply to or forward (basically
anything going out) automatically Bcc's a copy to an additional set email
address ???

grateful if you could help me

Thanks


  Reply With Quote
Old 06-11-2004, 10:52 AM   #2
Michael Bauer
Guest
 
Posts: n/a
Default Re: bcc any messages sent replied or forwarded to another mail address

Hi Walshy,

this simple lines could do the job:

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As
Boolean)
Item.BCC = "address@domain.de"
Item.Recipients.ResolveAll
End Sub


--
Viele Grüße
Michael Bauer


"Walshy" <Walshy@discussions.microsoft.com> wrote in message
news:C2A8B5EF-4B75-4C82-9FEE-72BF4996607B@microsoft.com...
> How can I sent it so that and messages I send, reply to or forward

(basically
> anything going out) automatically Bcc's a copy to an additional set

email
> address ???
>
> grateful if you could help me
>
> Thanks
>
>


  Reply With Quote
Old 02-08-2007, 04:52 PM   #3
=?Utf-8?B?bW9ua2x5?=
Guest
 
Posts: n/a
Default Re: bcc any messages sent replied or forwarded to another mail add

That works fine but I have 2 seperate IMAP email accounts set up in Outlook.
Can I get the BCC to different email addresses depending on which account I
send the mail from?



"Michael Bauer" wrote:

> Hi Walshy,
>
> this simple lines could do the job:
>
> Private Sub Application_ItemSend(ByVal Item As Object, Cancel As
> Boolean)
> Item.BCC = "address@domain.de"
> Item.Recipients.ResolveAll
> End Sub
>
>
> --
> Viele Grüße
> Michael Bauer
>
>
> "Walshy" <Walshy@discussions.microsoft.com> wrote in message
> news:C2A8B5EF-4B75-4C82-9FEE-72BF4996607B@microsoft.com...
> > How can I sent it so that and messages I send, reply to or forward

> (basically
> > anything going out) automatically Bcc's a copy to an additional set

> email
> > address ???
> >
> > grateful if you could help me
> >
> > Thanks
> >
> >

>
>

  Reply With Quote
Reply



Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off