Today's date in Outlook Mail Subject (2010/Quick Steps)

How can I automatically add the current date to the subject of a new Outlook 2010 message? i.e. "Status 2011-09-14" on sending message, from Quick Steps?

2 Answers

  1. Create a new Macro.
  2. Append date to the subject
    (newItem.Subject = Format(Now, "dd mmmm yyyy") & newItem.Subject)
  3. Create a shortcut to the Macro in the Quick Steps (QAT).
1

Unfortunately, you cannot do this just within a quickstep. Not in Outlook 2013 either.

One quick way - if you have the ability to install and run it - would be to use AutoHotKey.

This adds macro programming capability to Windows as a whole and you could fairly easily create something that would insert the current date.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like