L
Long Nguyen
Good day,
I have a vbscript code in my custom Outlook form that sends out an email,
similar to the code below. How can I code so that the email is sent in PLAIN
TEXT format (instead of whatever format - html/plain text/rich text - set in
the form user's Outlook environment).
Thanks
Long
Set NewMail = Item.Application.CreateItem(olMailItem)
NewMail.Subject = "My subject"
NewMail.Body = "My body"
NewMail.Recipients.Add(Item.To)
NewMail.Send
Set NewMail = Nothing
I have a vbscript code in my custom Outlook form that sends out an email,
similar to the code below. How can I code so that the email is sent in PLAIN
TEXT format (instead of whatever format - html/plain text/rich text - set in
the form user's Outlook environment).
Thanks
Long
Set NewMail = Item.Application.CreateItem(olMailItem)
NewMail.Subject = "My subject"
NewMail.Body = "My body"
NewMail.Recipients.Add(Item.To)
NewMail.Send
Set NewMail = Nothing