Sending (SMS) Picture Messages With ColdFusion And CFMail

<!---
	Send the pix message. This will send the text
	message in the CFMailPart in addition to the image.
--->
<cfmail
	to="5555555555@vzwpix.com"
	from="ben@xxxxxxxx.com"
	subject="Have fun at CFUNITED!">
 
	<!--- Send text message. --->
	<cfmailpart type="text/plain">Have Fun!</cfmailpart>
 
	<!--- Send image as attachment. --->
	<cfmailparam
		file="#ExpandPath( './beach_girls_640_480_at_30.jpg' )#"
		type="image/jpg"
		/>
 
</cfmail>

For Cut-and-Paste