here's some of my old code. not sure if these work still, but you get the
idea:

<!----- Sprint ----->

<CFHTTP
URL="http://www.messaging.sprintpcs.com/sms/check_message_syntax.html";
METHOD="POST">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="mobilenum" VALUE=#recipient#>
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="callbacknum" VALUE="">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="message"
VALUE=#URLEncodedFormat(the_message)#>
</CFHTTP>

<!----- PacBell ----->

<CFSET recipient = "1"&#recipient#>

<CFHTTP
URL="http://www.pacbellpcs.net/servlet/cmg.vasp.smlp.ShortMessageLaunchPad";
METHOD="POST">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="LANGUAGE" VALUE="en">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="NETWORK" VALUE="smsc1">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="DELIVERY_TIME" VALUE="0">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="SENDER" VALUE="noRope.com">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="RECIPIENT" VALUE=#recipient#>
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="NOTIFICATION_FLAG" VALUE="false">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="NOTIFICATION_ADDRESS" VALUE="">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="SHORT_MESSAGE" VALUE=#the_message#>
</CFHTTP>

<!----- AT&T ----->

<CFHTTP URL="http://www.mobile.att.net/mc/personal/mc_pagersend.cgi";
METHOD="POST">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="category" VALUE="personal">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="pin" VALUE=#recipient#>
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="from" VALUE="noRope.com">
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="subject" VALUE=#send_what#>
        <CFHTTPPARAM TYPE="FORMFIELD" NAME="message" VALUE=#the_message#>
</CFHTTP>


-----Original Message-----
From: Ang�l Stewart [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 11, 2001 7:52 AM
To: CF-Community
Subject: RE: free coldfusion code(Cfhttp) to send messages to mobile


An antenna, a styrofoam cup..and some string?

^_^

-Gel


-----Original Message-----
From: Eyad Makhoul [mailto:[EMAIL PROTECTED]]


Dear Angel...,
I tried and i did not find anything related to this topic so do u
have another way.....

Thanx.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to