umm...see my previous post which lists the following:

alphapage.airtouch.com - Air Touch
message.alltel.com - AllTel
ameritech.exmachina.com - Ameritech
mobile.att.ne - AT&T
message.bam.com - Bell Atlantic
sms.bellsouth.com - Bell South
text.houstoncellular.net - Houston Cellular
page.nextel.com - Nextel
PacBellPCS.Net - Pac Bell
pagenet.net - PageNet
skytel.com - SkyTel
message.swbellwireless.com - Southwestern Bell
sprintpaging.com - Sprint Page
messaging.sprintpcs.com - Sprint PCS

all you need is the mobile number xxxxxxxxxx@{mail server} where the server
is listed above.

-----Original Message-----
From: Timothy Dineen [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 11, 2001 1:27 PM
To: CF-Community
Subject: RE: Even more --> RE: free coldfusion code(Cfhttp) to send
messages to mobile



Additionally, most of the major carriers allow test messages to be sent via
email these days... so to generate a text message for Nextel, for example,
you can simply write a CFMail tag to email [EMAIL PROTECTED]

Thanks, Tim
www.Exposure.com

-----Original Message-----
From: Dylan Bromby [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 11, 2001 11:18 AM
To: CF-Community
Subject: Even more --> RE: free coldfusion code(Cfhttp) to send messages
to mobile


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