Macro: Open Outlook Template

  • Thread starter Thread starter Bob Wall
  • Start date Start date
B

Bob Wall

Outlook 2003

My users need a way to open a template that doesn't contain certain legal
disclaimers as footers in the default Word 2003 email editor.

I have a custom template that I'd like to open via a macro button on a
toolbar. My template is named InternalEmail, and stored as an Outlook Item
Template in my documents folder. Does anyone have any code snippets that
would help me out?

Many thanks in advance..
 
A macro in Outlook might be as easy as...

Sub CreateFromTemplate()
Set MyItem = Application.CreateItemFromTemplate("C:\path_to\filename.oft")
MyItem.Display
End Sub
 
Back
Top