Listing 1
<html>
<head>
<title>HTML Email</title>

</head>

<body>

Sending html email.<BR>

<!--- Get text message --->

<cfhttp
url="http://127.0.0.1/samplemail.txt"
method="GET">
</cfhttp>
<CFSET txtmessage=CFHTTP.FileContent>

<!--- Get html message --->

<cfhttp
url="http://127.0.0.1/samplemail.txt"
method="GET">
</cfhttp>
<CFSET htmlmessage=CFHTTP.FileContent>

<!---Define a unique boundary string --->

<CFSET boundary="==MuLtIpArT BoUnDaRy==">

<!--- Send the email --->

<cfmail to="audience@yourcompany.com"
from="kbrown@aboutweb.com"
subject="HTML Email">

<CFMAILPARAM
NAME="Content-Type"
VALUE='multipart/alternative;
boundary="#boundary#"'>

--#boundary#
Content-Type: text/plain

#txtmessage#

--#boundary#
Content-Type: text/html

#htmlmessage#

--#boundary#--
</cfmail>
</body>
</html>