Posted and filed under Programming.

Yeah. So. Gotta little bug here. Can anyone tell me how to force Outlook to send a message formatted as plain text instead of in the user’s default format in VB? The only information I can find is about the OlEditorType, but that is apparently read-only unless I force the mail object to have HTMLBody true. It’s not an emergency, or even important. It’s just really annoying me.

Dim myOLApp As outlook.Application, myItem As outlook.MailItem
Set myOLApp = CreateObject(“Outlook.Application”)
Set myItem = myOLApp.CreateItem(olMailItem)

2 Responses to “Visual Basic Code to Send Outlook eMail”

  1. Chris

    Trying to figure this out myself. Haven’t found anything. Let me know if you have any luck.
    Chris

Leave a Reply

  • (will not be published)