Is there any way I can disable "Use Microsoft Office Word to edit e-mail messages" option in Outlook via vbScript?
I am currently writing the script below, but I need this to disable the option mentioned above. The purpose is I am going to add complex div tags in the HTMLBody which Word cannot handle.
Set objOL = CreateObject("Outlook.Application")
Set objMail = objOL.CreateItem(olMailItem)
objMail.SentOnBehalfOfName = "Tech"
objMail.To = "abc@testuse.com"
objMail.Subject = "Announcement"
objMail.HTMLBody = "<p>test</p>"
objMail.Display
Your help is much appreciated in advance.
I am currently writing the script below, but I need this to disable the option mentioned above. The purpose is I am going to add complex div tags in the HTMLBody which Word cannot handle.
Set objOL = CreateObject("Outlook.Application")
Set objMail = objOL.CreateItem(olMailItem)
objMail.SentOnBehalfOfName = "Tech"
objMail.To = "abc@testuse.com"
objMail.Subject = "Announcement"
objMail.HTMLBody = "<p>test</p>"
objMail.Display
Your help is much appreciated in advance.