CFMail: CFMAILPARAM Used to Embed Images in Email

<cfmail
	to="xxxx@xxxx.com"
	from="xxxx@xxxx.com"
	subject="Embedded Image test via CFMail"
	type="html">
	 
	<h2>
		This Email is Designed to Test Embedded Email Messages
	</h2>
	 
	<p>
		Image of a girl I found on Flickr.com.
	</p>
	 
	<p>
		<img src="cid:girl" width="350" height="263" alt="" /><br />
	</p>
	 
	<p>
		Image of two girls I found on Flickr.com.
	</p>
	 
	<p>
		<img src="cid:girls" width="350" height="261" alt="" /><br />
	</p>
	 
	<!--- Embed image via the local file system. --->
	<cfmailparam 
		file="#ExpandPath('./girl.jpg')#"
		contentid="girl" 
		disposition="inline"
		/>
	 
	<!--- Embed the image via a live Url link. --->
	<cfmailparam 
		file="http://static.flickr.com/42/111929124_66e7ca6af0.jpg?v=0"
		contentid="girls" 
		disposition="inline"
		/>
 
</cfmail>

For Cut-and-Paste