J
John Gregory
Is there an OL2K VB property or method to create and send a mail ite
by "plain text"? (Not Rich Text or HTML) The code below sends Ric
Text even though I have manually set the option in OL2K for Plai
Text only in Tools,Options, Mail Format. I want all mail to go ou
as plain text
Sub Create_OL_Mail_PlainTextOnly(
Dim olApp As Outlook.Applicatio
Dim olMailItm As Outlook.MailIte
Set olApp = New Outlook.Applicatio
' Create new OL mail item
Set olMailItm = olApp.CreateItem(olMailItem
With olMailIt
.To = "(e-mail address removed);[email protected]
.Subject = "Msg created in VBA
.Body = "Msg created by VBA.
.Display 'Display or Sen
.Sav
.Close Fals
End Wit
'olApp.Qui
Set olApp = Nothin
Set olMailItm = Nothin
End Su
Thank
John Gregor
(e-mail address removed)
by "plain text"? (Not Rich Text or HTML) The code below sends Ric
Text even though I have manually set the option in OL2K for Plai
Text only in Tools,Options, Mail Format. I want all mail to go ou
as plain text
Sub Create_OL_Mail_PlainTextOnly(
Dim olApp As Outlook.Applicatio
Dim olMailItm As Outlook.MailIte
Set olApp = New Outlook.Applicatio
' Create new OL mail item
Set olMailItm = olApp.CreateItem(olMailItem
With olMailIt
.To = "(e-mail address removed);[email protected]
.Subject = "Msg created in VBA
.Body = "Msg created by VBA.
.Display 'Display or Sen
.Sav
.Close Fals
End Wit
'olApp.Qui
Set olApp = Nothin
Set olMailItm = Nothin
End Su
Thank
John Gregor
(e-mail address removed)