You can't specify the stationery with VBA like you do in Options, but you
can parse the stationery's .html file to include it in the .HTMLBody
property:
Set fso = CreateObject("Scripting.FileSystemObject")
Set ts = fso.OpenTextFile("c:\testfile.htm", ForReading)
strText = ts.ReadAll
objMsg.HTMLBody = strText
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.