Macro: Open Outlook Template

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..
 
N

neo [mvp outlook]

A macro in Outlook might be as easy as...

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top