PC Review


Reply
Thread Tools Rate Thread

default "user templates" for new email messages

 
 
charlie
Guest
Posts: n/a
 
      13th Dec 2007
I have just set up a html template, however, everytime I want to use this
template when sending a new email I have to do the following:

* Click "New Message" menu
* Select "Choose Form"
* Select "User templates in file system" from "look in" menu

Any ideas how to default my template, so it is there everytime i create a
new message?
 
Reply With Quote
 
 
 
 
Lorne
Guest
Posts: n/a
 
      13th Dec 2007
"charlie" <(E-Mail Removed)> wrote in message
news:4DD22E03-EF6A-4171-A0DF-(E-Mail Removed)...
>I have just set up a html template, however, everytime I want to use this
> template when sending a new email I have to do the following:
>
> * Click "New Message" menu
> * Select "Choose Form"
> * Select "User templates in file system" from "look in" menu
>
> Any ideas how to default my template, so it is there everytime i create a
> new message?


One way is to write a macro to do it for you and put a button on the menu to
execute the macro - then you can have several buttons - one for each
different stationery. If you do not know how to write macros search help on
visual basic, else wait for somebody else to offer another option.

This code works for me:

Sub NewLetter2()
Const strStationeryFile = "C:\Program Files\Common Files\Microsoft
Shared\Stationery\Letter2.htm"
Set NewMail = Application.CreateItem(olMailItem)
Set objFS = CreateObject("Scripting.FileSystemObject")
Set objStationeryFile = objFS.OpenTextFile(strStationeryFile, 1, False)
NewMail.HTMLBody = objStationeryFile.ReadAll
objStationeryFile.Close
NewMail.Display
End Sub


 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Add-in "outlook connector extensions" & "default email folders" e bds_mk Microsoft Outlook Discussion 1 10th Jun 2008 11:14 AM
Re: change incoming email attachment default to "open" vs "save as" Brian Tillman Microsoft Outlook 0 12th Dec 2006 01:58 AM
Re: Where is default "User Templates in File System" directory setting stored? bostonguy@gmail.com Microsoft Outlook Form Programming 2 3rd Jan 2005 10:11 PM
XP sysprep Image "Default User" or "All Users"? Gerry Viator Windows XP Setup 3 4th Jun 2004 02:04 AM
Problems to see "Default Web Site" with a user who's not "Local administrtator"... JM Robi Windows XP Security 2 10th Feb 2004 07:26 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:45 AM.