CreateItem message format

  • Thread starter Peter Ramsebner
  • Start date
P

Peter Ramsebner

Hello group

For E-Mails normally I'm using HTML format (Extras - Options -
E-Mail-Format - Messageformat is set to HTML)

I'm creating E-Mail messages from MS Access:
Set objOL = CreateObject("Outlook.application")
Set objMail = objOL.CreateItem(0)

Is it possible to create this E-Mails as 'Text only' instead of HTML. I
don't wont change the settings for general.

Thanks, Peter
 
K

Ken Slovak - [MVP - Outlook]

Use MailItem.BodyFormat. You can set it to OlBodyFormat.olFormatPlain (1).
 
P

Peter Ramsebner

Use MailItem.BodyFormat. You can set it to OlBodyFormat.olFormatPlain (1).

thanks, i will try it.
 
Top