Outlook 2010: permanently change all reply-to's for an outlook profile

11,050

If you also have to use Outlook, for me it worked with a small VBA macro:

  1. In Outlook open your Visual Basic Editor (+ or Extras → Macro → Visual Basic Editor)
  2. I did this in german, so the names may vary a bit: In Project1 (VbaProject.OTM) open Microsoft Office Outlook Objects → ThisOutlookSession
  3. Enter the following Code:

    Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
    
    'add reply-To address
    Item.ReplyRecipients.Add "[email protected]"
    Item.ReplyRecipients.ResolveAll   
    End Sub
    
Share:
11,050
hsl
Author by

hsl

Updated on September 18, 2022

Comments

  • hsl
    hsl almost 2 years

    At the place I work we are wanting to have all student worker email accounts automatically have a 'reply-to' field pointing to our global inbox. In other words, we want all incoming mail to go to [email protected] but allow all student workers to send email from their work account (eg [email protected]).

    I know that when composing a new email, I can choose options > "direct reply to" and that does what I want except that it has to be done manually and is therefore one more step which might be forgotten from time to time.

    How can we set up an outlook profile and/or email-account to have a specific reply-to by default?

    Additional context (if needed):

    The reason we don't want students to have access to the global inbox is because they will mistakingly make decisions which are incorrect based off of some emails (like who to assign certain problems to). So we want the staff to read through the inbox and make those decisions so that the students don't mistakingly make wrong decisions.

    However, the student workers do need to send email to clients to do their job, so they can send email via their work account, but...

    Sometimes students forget to check their work email for weeks, so replies get lost :(. That is why we want all reply-to fields to go to [email protected] .