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
- Create a new Macro.
- Append date to the subject
(newItem.Subject = Format(Now, "dd mmmm yyyy") & newItem.Subject) - Create a shortcut to the Macro in the Quick Steps (QAT).
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.