CDONTS has 2 similar properties, MailFormat and BodyFormat. If both are set to zero, like:
Code:
objName.BodyFormat=0
objName.MailFormat=0
the resulting mail is in html format.
In general
BodyFormat=0 (HTML format)
BodyFormat=1 (default Plain Text format)
The MailFormat sets the encoding
MailFormat=0 (Mime format)
MailFormat=1 (default Plain Text format
I hope that these cover your question
Kostas Lagos