It is often quite usefull to be able to send an email with HTML for those that can support it, and Plaintext, for those who do not.
There is how you can send a ‘multipart’ email with ColdFusion.
<cfmail from=”” to=”” subject=””>
<cfmailpart type=”text/plain”>
Plain text goes here
</cfmailpart>
<cfmailpart type=”text/html”>
HTML version goes here
</cfmailpart>
</cfmail>