briefpapier for microsoft outlook in vba code

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

Daniel

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
 

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