Previous Thread:   Embed a Calendar delete in an email

9/23/2005 9:42:23 PM    Macro: Open Outlook Template
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..



9/25/2005 11:14:51 AM    Re: Macro: Open Outlook Template
A macro in Outlook might be as easy as...  
  
Sub CreateFromTemplate()  
  
Set MyItem = Application.CreateItemFromTemplate("C:\path_to\filename.oft")  
  
MyItem.Display  
  
End Sub  
  
"Bob Wall" <robertwall@comcast.net> wrote in message  
  
news:unMS%23iKwFHA.3800@TK2MSFTNGP11.phx.gbl...