View Single Post
 
Old 09-24-2014, 09:08 PM
gmayor's Avatar
gmayor gmayor is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,106
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

Create a macro as follows and assign the macro to a keyboard shortcut. The procedure is the same as that at http://www.gmayor.com/installing_macro.htm albeit that uses Word as a platform.

Code:
Sub MyNewMessage()
Dim olItem As MailItem
    Set olItem = CreateItemFromTemplate("C:\TemplatePath\TemplateName.oft")
    olItem.Display
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote