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

Add Attachments and Set Email Fields During a Mail Merge

Slipstick Systems

› Developer › Code Samples › Add Attachments and Set Email Fields During a Mail Merge

Last reviewed on December 3, 2019     52 Comments

If you want to set certain Outlook fields when you do a mail merge, you need to use an ItemSend rule.

To use, open the VBA Editor using Alt+F11 and expand Project1 until you see ThisOutlookSession. Double click on ThisOutlookSession and paste the macro in the right pane.

Updated July 26 2017: Changed the macro to use a codeword in the subject and remove the codeword before sending.

This macro is not limited to mail merges; it checks the subject of every message you send to see if it meets the condition of the If statement.

To avoid running the macro on all messages you send, I'm using a codeword in the subject. If the word is found, Outlook removes it from the subject and runs the macro on the messages, adding attachments and setting other fields as needed.

If you want to change the codeword, choose something unique that you would not expect to use in an email. Remember: the codeword is case-sensitive. What you use in the macro is also what you'll use in the subject field.

If you are setting a reminder, you'll want change the reminder date and time. You can set the reminder to a specific date and time using #10/30/2012 8:00:00 AM# format or use Now + 1 for this time tomorrow (or any number of days in the future). If you use the deferred delivery option, you can use SendAt + 1 to set a reminder for 24 hours after the deferred send time.

after hitting send, the attachment and fields are added

Recipients may have rules to remove the reminder, flag, and Importance fields.

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

If InStr(LCase(Item.Subject), "[merge]") Then
'Defer delivery time
   SendAt = DateSerial(Year(Now), Month(Now), Day(Now) + 1) + #7:00:00 AM#
With Item
      .Subject = Replace(.Subject, "[merge]", "")
      .Importance = olImportanceHigh
      .VotingOptions = "I accept;I decline;I don't care"
      .ReminderSet = True
      .ReminderTime = SendAt + 1 '#10/30/2012 8:00:00 AM#
      .FlagRequest = "Please reply by " & .ReminderTime
      .DeferredDeliveryTime = SendAt
' to add an attachment, enter the path & name here
     .Attachments.Add "C:\Users\username\Documents\TEST.xlsx"
End With
  End If
End Sub

If you want to use a different attachment for each person, you'll need to use attachments that are the same name as a message field - the To field will probably be the easiest, although prone to problems. ("To" is the display name, not the email address.)

Item.Attachments.Add "D:\For merge\" & Item.To & ".docx"

Or use one of the utilities listed at Using Mail Merge in Outlook

Video Tutorial

More Information

Using Mail Merge in Outlook
Mass Mail Tools for Outlook
Printing Labels or Envelopes for Contacts
Start a Word letter from an Outlook contact
Create a Letter to a Contact using VBA

Add Attachments and Set Email Fields During a Mail Merge was last modified: December 3rd, 2019 by Diane Poremsky
Post Views: 36

Related Posts:

  • Mail Merge to Contact Groups
  • Mail merge and Send from a Distribution Group
  • Mail Merge to Email using an Outlook Macro
  • Merge to email using only Outlook

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. Jerzy says

    December 19, 2024 at 7:08 am

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

    If InStr(LCase(Item.Subject), "testtest") Then
    'Defer delivery time
    'SendAt = DateSerial(Year(Now), Month(Now), Day(Now) + 1) + #7:00:00 AM# - jutro o 7 rano
      SendAt = DateSerial(Year(Now), Month(Now), Day(Now))
    With Item
       .Subject = Replace(.Subject, "[merge]", "")
       .Importance = olImportanceHigh
       .VotingOptions = "I accept;I decline;I don't care"
       .ReminderSet = True
       .ReminderTime = SendAt + 1 '#10/30/2012 8:00:00 AM#
       .FlagRequest = "Please reply by " & .ReminderTime
       .DeferredDeliveryTime = SendAt
    ' to add an attachment, enter the path & name here
       .Attachments.Add "C:\1\2024test.pdf"
    End With
     End If
    End Sub

    I try & try
    and do not work for office365n enterprice

    Reply
    • Diane Poremsky says

      December 19, 2024 at 12:35 pm

      Any error messages? What exactly happens?

      It's working here.

      I updated the file path to use a file in OneDrive and it failed because the attachment was not downloaded to the computer (only the shortcut). Once I downloaded it, it worked.

      Reply
  2. Kyle says

    June 30, 2023 at 3:56 pm

    I am not having any luck at the moment. I've tried restarting outlook, but I'm still just receiving messages that say [merge] in the subject with no attachments. I've enabled all macros and can't seem to get any traction.

    Here's the version of the code I'm using.

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

    If InStr(LCase(Item.Subject), "[merge]") Then
    'Defer delivery time
      SendAt = Now + TimeSerial(0, 2, 0)
    With Item
       .Subject = Replace(.Subject, "[merge]", "")
       .Importance = olImportanceHigh
       .DeferredDeliveryTime = SendAt
    ' to add an attachment, enter the path & name here
       .Attachments.Add "Z:\"FILENAME".pdf"
    End With
     End If
    End Sub

    Reply
  3. Yudhi says

    June 20, 2023 at 5:24 am

    Hi Diane,

    Thank you for your great code.

    I have tried in Outlook 2013 and its work but not when I tried in Outlook 2019. Whats setting should I change?

    Reply
  4. Fahri pratomo says

    May 25, 2023 at 11:50 am

    i did everything but still nothing happen, no attachment and the email keep being sent.
    is this still working until today?

    Reply
  5. sam says

    May 10, 2023 at 11:36 am

    Hi Diane - Thank you for this - ive tried adding SentOnBehalfOfName = "user@domain.com" but it doesnt work. Any suggestions please?

    Reply
  6. Ross says

    March 8, 2023 at 9:17 am

    Could someone assist me with the following so that it will send individual attachments as mentioned above;

    Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
    
    If InStr(LCase(Item.Subject), "[#merge!]") Then
    'Defer delivery time
       SendAt = DateSerial(Year(Now), Month(Now), Day(Now) + 1) + #7:00:00 AM#
    With Item
          .Subject = Replace(.Subject, "[merge]", "")
          .Importance = olImportanceHigh
          .DeferredDeliveryTime = SendAt
    ' to add an attachment, enter the path & name here
         .Attachments.Add "C:\Users\username\Documents\TEST.xlsx"
    End With
      End If
    End Sub
    

    Where do I include this...
    Item.Attachments.Add "D:\For merge\" & Item.To & ".pdf"

    Also, is there a way to use an email vs the display name?

    Thank you

    Reply
  7. Hannes says

    November 24, 2022 at 11:51 am

    Quick help for anyone encountering the same problem:

    The code word (["merge"]) needs to be written in small letters within the MS visual basic. Otherwise it will not work.

    Reply
  8. Paolo says

    September 19, 2022 at 9:22 am

    Thank you very much for this.
    You saved me spending £30 on a plugin to do the same!

    Reply
  9. Santos says

    June 23, 2022 at 5:04 am

    This is so great.. and can we attach more than 1 file?

    and how to edit this command, if we want to send it immediately?

    SendAt = DateSerial(Year(Now), Month(Now), Day(Now) + 1) + #7:00:00 AM#
    With Item
    

    Many thanks.

    Reply
    • Diane Poremsky says

      September 19, 2022 at 2:50 pm

      Remove the line to send immediately.

      Repeat this line for each attachment - changing the path of course. :0
      .Attachments.Add "C:\Users\username\Documents\TEST.xlsx"

      Reply
    • Jerzy says

      December 19, 2024 at 7:00 am

      or SendAt = DateSerial(Year(Now), Month(Now), Day(Now) )
      
      Reply
  10. David manley says

    March 26, 2020 at 2:00 pm

    This is great but what would the syntex be to add the BCC field and email addresses under with item in the macro?

    Reply
    • nick says

      October 23, 2020 at 3:42 pm

      I would also really appreciate to learn how to do this as well

      Reply
    • nick says

      October 23, 2020 at 4:12 pm

      found this which forces a BCC. Its not as elegent as this though. Wondering if its possible to combine them...

      https://www.slipstick.com/outlook/email/automatically-bcc-all-message/

      Reply
  11. Rob Perkins says

    March 18, 2020 at 5:45 pm

    Diane, I am trying to add the same attachment to multiple emails that are cued up in my outbox on outlook. I am trying to figure out a way to add the attachments through outlook or, preferably, I would like to add the attachments as part of the mail merge, before I merge the emails from Word into my Outlook outbox. I'm not familiar with macros/VBA so I wasn't able to get anywhere with some of the replies you had provided to similar questions. Would really appreciate any guidance! Thanks. P.S. I am on a Mac.

    Reply
    • Diane Poremsky says

      March 19, 2020 at 12:30 am

      The PS part is the problem - Outlook for Mac doesn't use VBA. You'll need to do it in apple script - but I have very limited knowledge of apple script.

      Reply
  12. Jeza says

    July 23, 2019 at 8:11 pm

    Hi Diane,

    firstly thank you the video clip made it easy to understand and the use of a keyword was quite ingenious. I am not a VBA programmer, I've cut down your original code and am trying to use the code with a different email account which I have permission for in Outlook 2016.

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

    If InStr(LCase(Item.Subject), "[merge]") Then
    With Item
    .Subject = Replace(.Subject, "[merge]", "")

    ' to add an attachment, enter the path & name here
    .Attachments.Add "C:\Users\username\Documents\TEST.xlsx"

    'You can use .SentOnBehalfOfName property of outlook to send mail in the name of other user
    .SentOnBehalfOfName = "user@domain.com"
    .Display
    .Send
    End With
    End If
    End Sub

    At the moment the sent on behalf will only work if I take Outlook offline and physically open the email then manually send it, then go back online. Ideally, I don't want there to be any need for manual intervention.

    I've read up a bit and other posts say that the command SentOnBehalfOfName needs to be set first, in all the other examples it has been done in the context of creating something new, I can't work out the correct syntax for this code as it applies to an existing email.

    Any help suggestions would be appreciated

    Reply
  13. Courtney S says

    April 24, 2019 at 4:24 pm

    HI Diane - thanks for this! For some reason my subject line is still featuring [merge]. Could you help me figure out what I'm doing wrong?

    .Subject = Replace(.Subject, "[merge]", "") is what I'm using in my code. Thanks!

    Reply
    • Krunal Chauhan says

      September 18, 2019 at 8:59 am

      [merge] user for mail merge when you doing mail merge

      Reply
  14. Cathy M says

    July 27, 2018 at 2:49 pm

    Diane: I have copied the vba text as shown above in my Outlook sessions and even put the test .xlsx file in the file you show in the video. Obviously, I am doing something incorrectly, because it sends immediately instead of going to my Outbox and the attachment is never attached. I have about 200 e-mails that need the same attachment so I it would be helpful if I could get this to work. I have Outlook 2010 and Windows 10.

    Reply
    • MKS says

      January 15, 2024 at 2:50 am

      I have the same issue, only difference is, I'm trying to attach the pdf file. Any help would be appreciated.

      Reply
  15. Theresa H says

    July 25, 2018 at 4:48 pm

    This is pretty amazing. Thank you!
    Quick question. Is it possible to have 2 or more macros?
    So let's say I have an "instructor checkin" for one and then a "course evaluation" down the road that will have a possible attachment. Is that possible?
    Thank you again!
    Theresa

    Reply
    • Diane Poremsky says

      July 25, 2018 at 10:33 pm

      Yes, it is possible. Exactly how you'd do it will depend on your needs - the usual way is to use if statements to change which attachments or settings are applied.

      Reply
  16. WS Cowles says

    February 2, 2018 at 12:24 pm

    Great idea, but it's not working for me. I'm using Outlook 2007 and Exchange 2010. When I use the script, something is placing single quotes around every email which return as undeliverable...Any thoughts? Thanks!

    Reply
    • Diane Poremsky says

      February 2, 2018 at 7:23 pm

      Are the addresses messed up if you send without using the macro? Set outlook offline or disable the internet, generate the messages then open some from the outbox to check the address. Delete before going back online.

      It's not uncommon for outlook to wrap addresses in single quotes but the macro doesn't touch the address field, so its more likely outlook doing it.

      Reply
      • WS Cowles says

        February 5, 2018 at 6:00 pm

        The emails weren't wrapped in single quotes if I send without the macro... So I googled outlook single quotes. This post suggests a change in auto-correct (uncheck "change straight quotes to smart quotes") that seems to work!

      • Diane Poremsky says

        February 5, 2018 at 9:47 pm

        Interesting... i don't know why the editor settings would apply to the address fields but will look into it. (I started turning that option off years ago, which could explain why i haven't had a problem with the quotes in years.)

  17. Outlook user says

    September 26, 2017 at 11:14 am

    This is amazing, thank you Diane! :)

    Reply
  18. Mike Zoo says

    July 26, 2017 at 8:07 pm

    Is there any way to change the subject line so that it can say something besides "mail merge subject?" I changed it in the code so that it said "Test" instead of "mail merge subject" and the macro didn't work anymore.

    Reply
    • Diane Poremsky says

      July 26, 2017 at 11:10 pm

      in this line of the macro:
      If InStr(LCase(Item.Subject), "mail merge subject") Then

      change the subject to what you are using for a subject.
      This allows you to use send other mail while the macro is present and only have it apply to specific messages.

      it would also be possible to do something like '[merge] my real subject' as the message subject and remove [merge] as it's sent. (will add that version to the article)

      Reply
  19. Scott Arias says

    March 22, 2017 at 8:57 am

    I attempted to use this in Outlook 2013 but cannot get it to work. What changes need to be made?

    Reply
    • Diane Poremsky says

      March 23, 2017 at 11:20 am

      What happened when you tried it? (It works in 2013/2016 - all versions from 2007 and up actually).

      Reply
  20. SJOCHLIN says

    October 26, 2016 at 3:33 pm

    That is incredibly useful. I've been trying to add a .CC = "" to the 'With Item' and no luck. Any advice on how to do this?

    Reply
    • Diane Poremsky says

      October 27, 2016 at 11:40 pm

      adding .cc = "me@address.com" should work, but if you have values in the CC field, adding the recipient will preserve them -

      Dim objRecip As Recipient
      Dim strcc As String
      strcc = "address@domain.com"
      Set objRecip = Item.Recipients.Add(strcc)
      objRecip.Type = olCC

      (that is from https://www.slipstick.com/outlook/email/automatically-bcc-all-message/)

      Reply
      • SJOCHLIN says

        October 28, 2016 at 7:29 pm

        Fantastic! Thank you so much for tip above and timely response Diane!!! Very helpfu :)

  21. tt - says

    October 20, 2016 at 4:45 pm

    Looking for some help finding a work around - trying to send mass e-mail (merge) with numerous and specific attachments; I think VBA script may be my best bet; any thoughts??

    Reply
    • Diane Poremsky says

      October 20, 2016 at 9:47 pm

      Yes, either a script or an addin. As long as the attachments are always the same or you can identify the documents (such as the alias is in the file name), a macro will work fine. The addins usually offer additional features which can make mailmerge much easier.

      Reply
  22. Jason says

    June 9, 2016 at 10:39 am

    Thanks so much for this script, it's fantastic. One quick question. Is there a way to prevent attachments from being sent when I respond to replies with the same Subject?

    Reply
    • Diane Poremsky says

      August 23, 2016 at 11:54 am

      This line looks for the subject - If InStr(LCase(Item.Subject), "mail merge subject") Then but instr will catch re: subject too.
      You could look for the words on the left instead:
      If left(LCase(Item.Subject), 18) = "mail merge subject" Then
      or if you can't count (or the don't want to, especially on long subjects), do it this way:
      strSubject = "mail merge subject"
      If left(LCase(Item.Subject), len(strSubject)) = strSubject Then

      Reply
  23. Dylan says

    March 7, 2016 at 1:56 pm

    My script looks like this:

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

    If InStr(LCase(Item.Subject), "Payment Method Update") Then

    With Item
    .Attachments.Add "C:\Users\DSIPERS\Desktop\EFT_Form_2015.doc"
    End With
    End If
    End Sub

    All I'm trying to do is add the attachment. I've set my security so that when I restart Outlook it asks me to enable macros for ThisOutlookSession. When I attempt to send an email to myself with Payment Method Update in the subject field, the attachment doesn't work. I've also tried sending to myself using the mail merge tool, although it seems this script should work on all outgoing mail with subject "Payment Method Update".

    Reply
    • Diane Poremsky says

      March 7, 2016 at 2:36 pm

      oh... it took me a while to see it - it's this:
      LCase(Item.Subject), "Payment Method Update")
      LCase = lower case. You are converting the subject to lower case then looking for proper case match. use lower case in the phrase to match and it will work
      LCase(Item.Subject), "payment method update")

      Reply
  24. Linda Hummel says

    September 23, 2015 at 5:34 pm

    Yeah! Setting the macro security to low did the trick! Thank you, thank you!

    Reply
  25. Linda Hummel says

    September 23, 2015 at 3:57 pm

    Wow, amazing fast response, so thank-you!
    I am trying to use it with mail merge as I want the email messages sent with high importance. The mail merge format is HTML - does that impact anything. Still not working on my side.

    Reply
    • Diane Poremsky says

      September 23, 2015 at 4:17 pm

      Some days I'm fast, some days I'm really slow. :)

      If you have the complete macro, with this line at the top:
      Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)

      and the macro is in ThisOutlookSession, it should work. HTML format won't matter - it only looks at the subject.

      Did you set the macro security to low and restart outlook?

      Reply
  26. Linda Hummel says

    September 23, 2015 at 3:29 pm

    VB beginner...I'm trying to use this with Outlook 2010. All I want is to set the Importance to high, so my VB looks like this:
    If InStr(LCase(Item.Subject), "vmware exclusive invitation") Then

    With Item
    .Importance = olImportanceHigh

    End With
    End If
    End Sub

    Is this valid? It isn't working, so I'm obviously doing something wrong :(

    Reply
    • Diane Poremsky says

      September 23, 2015 at 3:48 pm

      it is correct and it's working here. Try commenting out the if/end if lines and see if it works on all messages.

      Are you using it to apply to messages as they are sent? if not, the problem could in the identifying the message you want the macro to change.

      Reply
  27. JayBird says

    January 19, 2015 at 7:37 pm

    I was using mailmerge tool kit and something updated this week that blew it up. This is a nice little substitute in a pinch. Thank you!

    Reply
  28. Brent says

    February 18, 2014 at 6:46 pm

    I am a VB beginner, and this is incredibly helpful. However, I am not able to store this as a Macro - I keep getting prompted to enter a Macro name, which I attempt to name "Application_ItemSend", which fails with the message "Name conflicts with existing module, project, or object library". If I create a new Macro and copy the code into it, I am still unable to save it - I just keep getting prompted to create a new macro. The only modifications that I made to the macro are removing the LCase constraint and including another mail attribute beneath ".FlagRequest" - here is my revised code:

    Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
    If InStr((Item.Subject), "Testing") Then
    With Item
    .Importance = olImportanceHigh
    .ReminderSet = True
    .ReminderTime = #3/4/2014 9:00:00 AM#
    .FlagRequest = "Please Reply by 3/5"
    .VotingOptions = "Yes, my website is still active;No, my website is no longer active"
    End With
    End If
    End Sub

    Thanks in advance for your guidance!

    Reply
    • Diane Poremsky says

      February 19, 2014 at 12:21 am

      do you have another macro by the same name? That is what the error is telling you. Press Ctrl+F and search for ItemSend with the option selected to search the Project.

      Reply
  29. Vlado says

    February 17, 2014 at 8:07 am

    Great macro, Thank you. I have just one small problem with this. I can't use capital letter in the mail subject. If I use capital letter (anywhere in the subject text), macro is not working.

    Reply
    • Diane Poremsky says

      February 17, 2014 at 9:27 am

      Are you using all lower case in the string you are testing for? The lcase function will convert the subject to all lower case to test it against the string.
      If InStr(LCase(Item.Subject), "mail merge subject") Then

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

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

Latest EMO: Vol. 31 Issue 3

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
  • Jetpack plugin with Stats module needs to be enabled.
  • 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
  • Google Workspace and Outlook with POP Mail
  • Import EML Files into New 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

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

Google Workspace and Outlook with POP Mail

Import EML Files into New 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.