CreateItem message format

  • Thread starter Thread starter Peter Ramsebner
  • Start date 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
 
Use MailItem.BodyFormat. You can set it to OlBodyFormat.olFormatPlain (1).
 
Use MailItem.BodyFormat. You can set it to OlBodyFormat.olFormatPlain (1).

thanks, i will try it.
 
Back
Top