• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Choose the account to send a reply from

Slipstick Systems

› Outlook › Email › Choose the account to send a reply from

Last reviewed on February 12, 2018     41 Comments

By default, Microsoft Outlook always replies to and forwards mail using the account the message arrived on. Most of the time, this is how most of us want Outlook to handle our accounts. But there are times when you might want to send the reply from a different account.

If you always want to send all mail out using a specific email account (such as if you are changing addresses and the old address is inbound mail only), you can configure this in Account Settings by putting the sending email address in the Email address field (1), changing the outgoing server name (2) and configuring authentication for the outgoing server in More Settings, Outgoing Server tab (3). (The login username and password on the first page of the dialog is used to download mail.)
reply-account-1

If you just want to choose a different address every now and again, for example, to forward a joke sent to your work account to friends using your personal account. To do this, you need to select the account in Outlook before sending, using the Account or From button.
reply-account-2

If you need to frequently send mail from a different account, you can use a macro (below) to set the sending account, then assign the macro to a toolbar or ribbon button.

Macro to Reply, ReplyAll or Forward from a specific account

Outlook should always reply and forward from the account that downloaded the message. However, if you want to force replies or forwards from a specific account, you can use this code and create a custom reply button that uses your desired account, so you don't have to remember to change the sending account.

Replace the_email_account_name with the account name, as seen in the Account Settings dialog or on the Account selector.

To reply to all or forward, change
Set oMail = Application.ActiveExplorer.Selection(1).Reply

to either one of these:
Set oMail = Application.ActiveExplorer.Selection(1).ReplyAll
Set oMail = Application.ActiveExplorer.Selection(1).Forward

Always reply using a specific account

Public Sub New_Reply()
Dim oAccount As Outlook.Account
Dim oMail As Outlook.MailItem

For Each oAccount In Application.Session.Accounts

If oAccount = "the_email_account_name" Then
    Set oMail = Application.ActiveExplorer.Selection(1).Reply
      oMail.SendUsingAccount = oAccount
    oMail.Display
End If
Next

End Sub

To use a reply address you have SendAs rights to, you can use the .SentOnBehalfOfName property. Add it between the .SendUsingAccount and .Display lines (lines 9 and 10 in the sample above), as shown below. Don't forget to change the account name!

oMail.SendUsingAccount = oAccount
oMail.SentOnBehalfOfName = "me@here.com"
oMail.Display

To always send it to a specific address, add the recipient after the account is set:
oMail.SendUsingAccount = oAccount
oMail.Recipients.Add ("alias@domain.com")

More Information

How to use Outlook's VBA Editor
Customizing the Quick Access Toolbar (QAT)
How to Enable the Developer Ribbon
See Outlook 2010, Multiple Accounts and the Default Account for two macros you can use to force Outlook to use a specific account for new messages.

Choose the account to send a reply from was last modified: February 12th, 2018 by Diane Poremsky
Post Views: 54

Share this:

  • Share on Facebook (Opens in new window) Facebook
  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Mastodon (Opens in new window) Mastodon
  • Email a link to a friend (Opens in new window) Email

Related Posts:

  • Reply using the address a message was sent to
  • Macros to send messages using a specific account
  • This macro demonstrates how to pick up the sender's address and use it
    New Message From Sender
  • Assign an Email Account to an Outlook Contact

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Comments

  1. Branko says

    August 6, 2020 at 12:59 am

    Hi Diane,
    I like the concept but I would like to send out emails where the From address is something like no-reply@abc.com

    I think that ".SentOnBehalfOfName" should be able to do that but can't get it to work.

    Branko.

    Loading...
    Reply
  2. Tim Richards says

    September 9, 2019 at 1:24 am

    First, Thanks Diane for all of your public works. Very helpful.

    The 'Always reply using a specific account' macro stops working 100% in Office 365. It won't change the 'From' account on outlook.com accounts, and maybe others. I've had success with the following one line change.
    oMail.SendUsingAccount = oAccount
    becomes
    oMail.Sender = oAccount.CurrentUser.AddressEntry

    Full macro below.

    Hope this helps someone,
    Tim.

    Public Sub New_Reply()
    Dim oAccount As Outlook.Account
    Dim oMail As Outlook.MailItem

    For Each oAccount In Application.Session.Accounts

    If oAccount = "the_email_account_name" Then
    Set oMail = Application.ActiveExplorer.Selection(1).Reply
    oMail.Sender = oAccount.CurrentUser.AddressEntry
    oMail.Display
    End If
    Next

    End Sub

    Loading...
    Reply
  3. Tony says

    May 22, 2019 at 7:03 pm

    When I use the above macro, the recipient only sees my email address in the 'from' field (), and not my display name. When I manually select the address to send from, the recipient sees my display name and email address in the 'from' field (Firstname Lastname ). It's just a small annoyance, but maybe there is an easy way to fix this?

    Loading...
    Reply
  4. Daniel Boehme says

    February 17, 2017 at 10:50 am

    .SendUsingAccount doesn't work with one of my outlook.com accounts. It does return the correct address after setting it while the from field still shows the address of the outlook.com account. With other accounts it works perfectly. Is this a known bug? Do I really have to switch to a new account?

    Loading...
    Reply
    • Diane Poremsky says

      February 19, 2017 at 11:18 pm

      Could it be this bug? https://www.slipstick.com/outlook/outlookcom/outlook-com-reply-account/

      Loading...
      Reply
  5. Phi061 says

    September 9, 2016 at 6:01 pm

    Yesterday I let a post indicating the 1st sentence was wrong with Outlook 2016 "By default, Microsoft Outlook always replies to and forwards mail using the account the message arrived on". The account hosting the calendar and contacts is always used for replies and transfers with Outlook 2016 !
    It is confirmed : I only uninstalled Office 2016 and installed Office 2013 keeping all the same accounts, and the problem is now solved !
    Don't use Office 2016, and maybe even think twice before using Office.

    Loading...
    Reply
  6. Phi061 says

    September 9, 2016 at 12:08 am

    the first assumption in this text is wrong with Outlook 2016 "By default, Microsoft Outlook always replies to and forwards mail using the account the message arrived on".
    Now Outlook 2016 always replies and forward using the mail account that owns the default data file (calendar, contacts), whatever the used email account is used or which default email account is defined. The default email account can be considered for new mails (if the correct settings are done in Outlook 2016), but I can't find no way to force Outlook 2016 to use the account the message arrived on !
    Somebody has a trick for such reply other than to return back to Office 2013 ?

    Loading...
    Reply
    • Diane Poremsky says

      September 10, 2016 at 12:02 am

      it shouldn't do that for replies and forwards - it might for new messages and meeting requests tho, depending on how your profile is configured.

      Loading...
      Reply
      • Mike Hall says

        October 4, 2016 at 5:23 am

        I'm finding exactly the same as Phi061 in Outlook 2016. I have an IMAP [Fastmail] account which is set as my default account and which handles all of my email. I have a (recently migrated) Outlook.com account which I use for calendar and contacts, (and it also has email too, although I don't use this). New emails are defaulted to be sent from my IMAP Fastmail account, but replies or forwards always come from "outlook_xxxxxxxxxxxxxxx@outlook.com" unless I change the 'from' address on a individual case-by-case basis. (where xxxxx is a string of 16 'random' characters.

        Loading...
      • Diane Poremsky says

        October 26, 2016 at 11:40 pm

        It's a bug. :( On the goofy address part, log into outlook.com and go to options then Mail > Connected Accounts. At the bottom of the page is your default address. Change it to an outlook.com address or add your fastmail address as a connected account then set it as the default. (You'll need to guess then test it to see which is the correct entry as both the alias and connected account will be listed.)

        Loading...
      • Mike Hall says

        November 20, 2016 at 5:36 am

        Diane it's great, (but frustrating), to hear that this is acknowledged as a bug. A couple of quick questions; 1. is there any where to track this bug so that I know to try full exchange sync again after update x to office for example? 2. It is mind-numbingly frustrating to think that I spent over an hour on an MS support call with MS remoteing into my PC trying to fix the issue, (basically re-trying everything I'd already tried). Don't the helpdesk folks have access to bug lists too? Grrrrr

        Loading...
      • Danny Khen says

        January 27, 2017 at 7:24 pm

        Diane,
        Do you know if MSFT are working on this bug / acknowledged it? I am hitting exactly the same issue. New mails are set to be sent by my default IMAP account, but replies/forwards are set to be sent from my outlook.com (Hotmail) account (even when they arrived on the default IMAP account).
        Thanks,
        Danny

        Loading...
      • Diane Poremsky says

        March 20, 2017 at 1:22 am

        They are working on it, not sure of an ETA though.

        Loading...
      • Alan Cox says

        October 26, 2016 at 7:28 pm

        You say it shouldn't but my started doing that. It does not matter which email account I am using my replies are always from my default hotmail account. The reply includes the line on behalf of behalf of; alan.cox@hotmail.com. Technically it is sending from the correct account server but why is this line included unless I manually indicate to use my gmail account which I use for personal only.

        Loading...
      • Diane Poremsky says

        October 26, 2016 at 11:31 pm

        There is a bug in Outlook.com accounts - it happens when you have either a non-ms alias on the account or a new premium custom domain. I believe it's related to the feature that lists the aliases in the From field selector, but Microsoft hasn't ID'd the cause yet.

        Loading...
  7. Scott says

    June 1, 2016 at 11:56 am

    This script successfully opens an email thread with a "Reply All" message and changes the "From" field to my desired (y@testing.com) account address. However, once I send out the reply, the address switches back to my unwanted account address (x@testing.com) so that the recipient sees the sender as X instead of Y. Any ideas?

    It should be noted that if I click on the already selected Y address that visually shows up in the message's "From" field, then the email sends with the Y address. But the whole point of implementing the script is so that I don't need to click on the field in order to change addresses every time I send an email.

    Thanks for your help,

    Loading...
    Reply
    • Diane Poremsky says

      June 1, 2016 at 1:44 pm

      What type of email account do you use? What address is in the from field in the sent folder? If you type the address in the From field, does it use the address you typed?

      Loading...
      Reply
      • Scott says

        June 1, 2016 at 3:25 pm

        It's a Microsoft Exchange account managed by the company I work for. I have three different inboxes all with separate addresses. But I never need to send/reply/forward mail from any address except my personal which is the default account.

        Sent folder shows the message being sent from my unwanted X address, and interestingly shows up in both the X mailbox's sent folder and in my personal Y mailbox's sent folder, even though both show the sender as X.

        Yes, if I type the address it uses the address I've typed.

        This is my code:

        Public Sub New_Reply()
        Dim oAccount As Outlook.Account
        Dim oMail As Outlook.MailItem

        For Each oAccount In Application.Session.Accounts

        If oAccount = "X@testing.com" Then
        Set oMail = Application.ActiveExplorer.Selection(1).ReplyAll
        oMail.SendUsingAccount = oAccount
        oMail.SentOnBehalfOfName = "Y@testing.com"
        oMail.Display
        End If
        Next

        End Sub

        Loading...
      • Diane Poremsky says

        June 2, 2016 at 12:23 am

        Is the account open as a shared mailbox or as a separate email account in your profile? This part looks for an account in the profile: If oAccount = "X@testing.com" Then. If you want to change it top Y, try this:
        If oAccount = "X@testing.com" Then
        Set oMail = Application.ActiveExplorer.Selection(1).ReplyAll
        oMail.SendUsingAccount = "Y@testing.com"
        oMail.Display

        if it error on the sendusingaccount line, make this change:
        Dim myAccount As Outlook.Account
        Set myAccount = "Y@testing.com"

        then use
        oMail.SendUsingAccount = myAccount

        Loading...
      • Scott says

        June 2, 2016 at 11:36 am

        Hi Diane,

        Yes, "X.@testing.com" is a shared mailbox, while "Y@testing" is my private.

        Unfortunately neither change worked. I received a mismatch error for
        oMail.SendUsingAccount = "Y@testing.com"

        And when I created the variable myAccount nothing happens after running the script.

        Loading...
      • Diane Poremsky says

        August 26, 2016 at 10:23 pm

        You need to use this is the mailbox is not a separate account in your profile
        .SentOnBehalfOfName = "alias@domain.com"

        it need to be added before the message displays - once the message displays, vba can't change the account.

        Loading...
      • Scott says

        June 8, 2016 at 12:50 pm

        Hi Diane,

        The X inbox is a shared inbox, while the Y is my personal.

        Unfortunately, this did not work. Any other ideas?

        Loading...
      • Diane Poremsky says

        August 26, 2016 at 10:15 pm

        is the mailbox configured as an email account in your profile? if it's added as a shared mailbox, you can't use accounts to send as it. You would need to use the sentonbehalfof method.

        Loading...
      • Mark says

        April 13, 2021 at 1:36 pm

        Hi Diane,

        Could you write an article on how to use .SentOnBehalfOf when a user clicks "Reply". I'm having a really tough time figuring out how to do it in the "Outlook Session" part of the Visual Basic Editor.

        Thanks,

        Mark

        Loading...
  8. George says

    May 24, 2016 at 9:18 am

    Hi Diane,

    Thanks for writing this article. I'm quite new to VBA, and I'm trying to figure out why the solution is not working for me. I've copied it directly into a fresh module and only changed only the the_email_account_name to read "george@company.com" -- (not this exact email, but an actual account that Outlook is connected to via Exchange). I also changed the macro security settings in Trust Center. Would this code work on Outlook '16 64-bit? If not, do you know what needs to be updated?

    Thanks again!

    Loading...
    Reply
    • Diane Poremsky says

      June 1, 2016 at 1:51 pm

      Yes, it should work in the 64-bit version. Do you get any error messages when you use it?

      Loading...
      Reply
  9. Ranjith says

    August 19, 2015 at 11:04 am

    Set oMail = Application.ActiveExplorer.Selection(1).ReplyAll
    If i use the above code it is capturing only the CC field and not the to filed

    Loading...
    Reply
    • Diane Poremsky says

      August 19, 2015 at 12:41 pm

      Hmm. Reply all should use to and cc fields. If your address is the only one in the To field, it won't reply all to you or if you add an address using oMail.To = "address", it will replace any addresses already there.

      Loading...
      Reply
  10. Ranjith says

    August 19, 2015 at 11:03 am

    If i use this code it is capturing only the CC field and not the to filed

    Loading...
    Reply
  11. zaccarey says

    March 12, 2015 at 6:21 am

    Perfect! I used the following. I'm sure a more generic solution is possible, but we're a small enough office so this will suffice. Thank you.

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

    On Error Resume Next

    If Not Item.SendUsingAccount = "me@myoffice.co.uk" Then
    prompt$ = "You sending this from " & Item.SendUsingAccount & ". Are you sure you want to send it?"
    If MsgBox(prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, "Check Sending Account") = vbNo Then
    Cancel = True
    End If
    End If

    End Sub

    Loading...
    Reply
  12. zaccarey says

    March 10, 2015 at 1:55 pm

    We have a shared Contacts 'account' on Outlook Version 14 called 'contacts@mycompany.co.uk'. All contacts, from phones or wherever, get synchronized to this account.

    The account is not supposed to be used for sending or receiveing email. However, sometimes users send (and then reply) from this account by mistake.

    Can I adapt the macro above to ALWAYS send these emails from the given user's default account - regardless of whether the user is sending or replying? And regardless of whether they're pressing 'Reply', 'Send', or right-clicking on a contact and selecting 'Create... Email', etc.?

    Loading...
    Reply
    • Diane Poremsky says

      March 11, 2015 at 8:42 am

      Yes. Or you can use a macro to check the account the message is being sent from and warn the user. Either way, you want to use an item send macro.

      I have a macro at the bottom of this page Check new messages you send that should work - it's the one at the end of the article. It warns. I'll have to test it to see if we can automatically change the account on send - Outlook tends to be picky about when it's changed.

      Loading...
      Reply
  13. Kevin says

    February 10, 2015 at 8:41 am

    My template is used as an auto reply template that is set in my rules. When I set it to send from the other account, it reverts back to the default user account when I reopen the template. Microsoft says this is by design. There is also an option to use a script in the rules section that can possibly allow this to happen. I see you have scripts that send from another account, but I am not sure how to apply it to my scenario.

    Loading...
    Reply
    • Diane Poremsky says

      March 6, 2015 at 10:59 pm

      it should use the correct account - you could use a script to reply and set the from account. The rule would be used to identify the message that you want to reply to. I'll see if i can find a macro.

      Loading...
      Reply
  14. Kevin says

    February 2, 2015 at 12:06 pm

    Diane, I have setup an Outlook 2010 reply template, and I would like that template to send the template from another account.Do you have a simple script I can use for this? I have looked on this site, but not sure if I saw what I was looking for. I am not script savvy.
    Thanks,
    -Kevin

    Loading...
    Reply
    • Diane Poremsky says

      February 8, 2015 at 3:05 pm

      You need to set the sending account before the template is opened. *If* the account display name (as shown in File, Account Settings) doesn't change, you can (or used to be able to, I haven't done it in a long time) select the account before saving the template, otherwise, you need to use a script to set the account.

      How are you opening the template? If using a macro, set the account before displaying the new message.

      Loading...
      Reply
  15. Glen says

    January 9, 2015 at 9:14 pm

    Diane,

    i'm looking for a script that will do something like this.

    If recipient address =x then reply using x account or if recipient address =y then reply using y account or If recipient address =z then reply using z account.

    what I have is 3 email accounts. I'm using outlook 2013. I have all three accounts set up in outlook but at the same time I forward all messages to a single account.

    I want to reply to them and avoid showing the "on behalf of" so i figured the easiest way would be to create a macro to do what i mentioned above.

    Your help is greatly appreciated.

    Loading...
    Reply
    • Diane Poremsky says

      January 16, 2015 at 12:33 am

      See https://www.slipstick.com/developer/reply-using-address-message-sent-to/ for a code sample that checks for an address and sends using the account.

      Loading...
      Reply
  16. Mark says

    August 22, 2012 at 1:00 pm

    OK, that looks like what I'm looking for. Although, I'm still not sure I want to use Outlook for my setup. (Outlook 2010, no SP)

    I have two IMAP accounts set up at the domain that I own, plus an Exchange work account. I used to use POP3, but a friend of mine convinced me to switch to IMAP (mainly because he wanted to close down the POP3 port on our firewall at work). In general, I like it better - as long as I can have a local copy somewhere of the folders in case access to the server is down.

    Anyway, I'm looking around for the best email client to use both at work and at home. I've never used Outlook at home, and was wondering if it would work well for my situation.

    I've been using Thunderbird, but it has some quirks, and they are annoying me to point of looking for something else.

    Calypso/Courier is what I used for a long time, and I really liked it! I may still go back to it, although it hasn't been maintained for years. Heck, I may even go back to POP3.... looks like it's gonna be around for a while yet.

    Thanks for your help and your time!

    Loading...
    Reply
  17. Mark says

    August 21, 2012 at 11:53 am

    I used to use an email client that was configurable in such a way as to force you to choose an account to send from every time. While it may seem a bit clunky, I found it useful because I had a couple of accounts that I sent from fairly regularly, and when forwarding emails to different people it came in handy.

    I wonder if there's a quick way to default to NULL for the sending account, so if you didn't pick one from the button you describe, you'd get an error message saying "Please choose a sending account" or something.

    Ideas?

    Mark

    Loading...
    Reply
    • Diane Poremsky says

      August 21, 2012 at 1:57 pm

      There is a reg key you can set that will make you pick each time. I tested with for about 4 hours then decided I'd rather use a macro to set the account as I opened the message. See Outlook 2010 Multiple Accounts for the key. I'm not sure if it works in older versions, I should check that.

      Loading...

      Reply

Leave a ReplyCancel reply

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 31 Issue 8

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Deleting Auto-Complete Entries No Longer Works
  • Use Classic Outlook, not New Outlook
  • How to Remove the Primary Account from Outlook
  • How to Hide or Delete Outlook's Default Folders
  • Change Outlook's Programmatic Access Options
  • Removing Suggested Accounts in New Outlook
  • Reset the New Outlook Profile
  • Disable "Always ask before opening" Dialog
  • Understanding Outlook's Calendar patchwork colors
  • Calendar Printing Tools
  • Deleting Auto-Complete Entries No Longer Works
  • Sync Issues and Errors with Gmail and Yahoo accounts
  • Error Opening iCloud Appointments in Classic Outlook
  • Opt out of Microsoft 365 Companion Apps
  • Mail Templates in Outlook for Windows (and Web)
  • Urban legend: Microsoft Deletes Old Outlook.com Messages
  • Buttons in the New Message Notifications
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Deleting Auto-Complete Entries No Longer Works

Sync Issues and Errors with Gmail and Yahoo accounts

Error Opening iCloud Appointments in Classic Outlook

Opt out of Microsoft 365 Companion Apps

Mail Templates in Outlook for Windows (and Web)

Urban legend: Microsoft Deletes Old Outlook.com Messages

Buttons in the New Message Notifications

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

VBA Basics

How to use the VBA Editor

Work with open item or selected item

Working with All Items in a Folder or Selected Items

VBA and non-default Outlook Folders

Backup and save your Outlook VBA macros

Get text using Left, Right, Mid, Len, InStr

Using Arrays in Outlook macros

Use RegEx to extract message text

Paste clipboard contents

Windows Folder Picker

Custom Forms

Designing Microsoft Outlook Forms

Set a custom form as default

Developer Resources

Developer Resources

Developer Tools

VBOffice.net samples

SlovakTech.com

Outlook MVP David Lee

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2026 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.

%d