briefpapier for microsoft outlook in vba code

  • Thread starter Thread starter Hugo Lefebvre
  • Start date Start date
H

Hugo Lefebvre

I use the following vba-code (in Microsoft Access) for sending mail in
Outlook:

Set myOlapp = CreateObject("Outlook.Application")
Set myNameSpace = myOlapp.GetNamespace("MAPI")
Set myFolder = myNameSpace.GetDefaultFolder(olFolderDrafts)
Set myItem = myOlapp.CreateItem(olMailItem)
...

Is it possible to choose a 'briefpapier' in the vba-code? I don't know how
to translate 'briefpapier' (= dutch) in English. You can activate it in
Microsoft Outlook 2003 by choosing Tools, then Options and then the third
tab. It is beside of 'Fonts'. It is something like a template you can use
for new e-mail: you can choose font and background.
 
Hugo,

You might want to try an Outlook newsgroup for this one. You'll probably
get the answer faster, as it's their specialty.

Daniel
 
Back
Top