Sending Text Messages (SMS) With ColdFusion And CFMail

<cfhttp
	url="https://www.vtext.com/customer_site/jsp/disclaimer.jsp"
	method="POST"
	useragent="Mozilla / Firefox"
	result="objHTTP">
 
 
	<!--- Set referrer. --->
	<cfhttpparam
		type="CGI"
		name="referer"
		value="https://www.vtext.com/customer_site/jsp/messaging_lo.jsp"
		encoded="false"
		/>
 
 
	<!--- Include the original hidden form fields. --->
 
<cfhttpparam
		type="FORMFIELD"
		name="trackResponses"
		value="No"
		/>
 
	<cfhttpparam
		type="FORMFIELD"
		name="Send.x"
		value="Yes"
		/>
 
	<cfhttpparam
		type="FORMFIELD"
		name="translatorButton"
		value=""
		/>
 
	<cfhttpparam
		type="FORMFIELD"
		name="showgroup"
		value="n"
		/>
 
	<cfhttpparam
		type="FORMFIELD"
		name="DOMAIN_NAME"
		value="@vtext.com"
		/>
 
 
	<!--- Visible form fields. --->
 
	<!--- To (number). --->
	<cfhttpparam
		type="FORMFIELD"
		name="min"
		value="XXXXXXXXXX"
		/>
 
	<!--- Text message Content. --->
	<cfhttpparam
		type="FORMFIELD"
		name="text"
		value="This is a test ColdFusion submission."
		/>
 
	<!--- Not sure what this is??? --->
	<cfhttpparam
		type="FORMFIELD"
		name="message"
		value=""
		/>
 
	<!--- From (name or number). --->
	<cfhttpparam
		type="FORMFIELD"
		name="subject"
		value="Ben Nadel"
		/>
 
	<!--- Reply-to number. --->
	<cfhttpparam
		type="FORMFIELD"
		name="sender"
		value="XXXXXXXXXX"
		/>
 
	<!--- Call back number. --->
	<cfhttpparam
		type="FORMFIELD"
		name="callback"
		value=""
		/>
 
	<!--- Message priority. --->
	<cfhttpparam
		type="FORMFIELD"
		name="type"
		value="0"
		/>
 
	<!---
		Count field (available characters). Your Message,
		Reply To Address and Callback Number fields all
		count toward the 160-character message length.
	--->
	<cfhttpparam
		type="FORMFIELD"
		name="count"
		value="#(160 - 37)#"
		/>
 
	<!--- Form buttons. --->
 
	<cfhttpparam
		type="FORMFIELD"
		name="Send"
		value="Send"
		/>
 
	<cfhttpparam
		type="FORMFIELD"
		name="Reset"
		value="Clear"
		/>
 
	<cfhttpparam
		type="FORMFIELD"
		name="disclaimer_submit"
		value="disclaimer_submit"
		/>
 
</cfhttp>

For Cut-and-Paste