Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Exchange 5.5 question

Options
  • 21-03-2003 3:47pm
    #1
    Closed Accounts Posts: 625 ✭✭✭


    Anyone know if it's possible to make email sent by a particular user be BCCd to another user automatically ?

    We've got a Senior manager leaving to a competitor shortly...

    If it's possible, how is it done ?

    TIA


Comments

  • Registered Users Posts: 1,586 ✭✭✭Gaz


    Not that i know of , but if its just a case of you wanting to read this guys mail why not give user right to another user and then they will be able to access his inbox and read his sent mail.

    Is that what your trying to do ?


  • Closed Accounts Posts: 6,143 ✭✭✭spongebob


    the anti virus scanner may be able to forward all emails with hisname@yourcompany.com in the header to you if you are the administrator.

    for inspection of course.

    most antivirus for exchange servers operates on in and out bound mail nowadays.


  • Closed Accounts Posts: 625 ✭✭✭ThreadKiller


    It's ok guys I got a little piece of code that automatically BCCs


  • Closed Accounts Posts: 6,143 ✭✭✭spongebob


    pm me the link as a matter of interest ?


  • Closed Accounts Posts: 625 ✭✭✭ThreadKiller


    Sent


  • Advertisement
  • Registered Users Posts: 1,130 ✭✭✭Pimp Ninja


    Also interested in that .. Link plz...


  • Closed Accounts Posts: 625 ✭✭✭ThreadKiller


    ok rather than the link (which I can't remember)

    Here's the deal.

    Open outlook.
    Go to Macro security, turn it to low.
    Press "ALT + F11"

    enter the following:

    Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)

    Dim objMe As Recipient

    Set objMe = Item.Recipients.Add("myaddress@mydomain.dom")

    objMe.Type = olBCC

    objMe.Resolve

    Set objMe = Nothing

    End Sub

    Change the name in the email.

    Close the session & restart.


Advertisement