|
| Author |
Message |
infernothebest Newbie

Joined: 20 Mar 2005 Posts: 13
 
|
Posted: Sat Apr 02, 2005 10:29 am Post subject: |
|
|
| does anyone got a source or something that can send a message to a mobile fone and if he wants to send it back it has to come to my mobile cell fone |
|
| Back to top |
|
 |
draget Not Yet a God

Joined: 29 Dec 2004 Posts: 367 Location: Australia
   
|
Posted: Sat Apr 02, 2005 12:32 pm Post subject: |
|
|
| please make your message clearer. |
|
| Back to top |
|
 |
Dazzy Agent

Joined: 09 Jan 2004 Posts: 1731
 
|
Posted: Sat Apr 02, 2005 1:04 pm Post subject: |
|
|
| I think he wants a command to send text messages to a mobile... |
|
| Back to top |
|
 |
draget Not Yet a God

Joined: 29 Dec 2004 Posts: 367 Location: Australia
   
|
Posted: Sat Apr 02, 2005 1:30 pm Post subject: |
|
|
use a online texting service.
will cost you though. |
|
| Back to top |
|
 |
mat007 Almost An Agent

Joined: 12 Jan 2004 Posts: 1375
   votes: 2
|
Posted: Sat Apr 02, 2005 1:49 pm Post subject: |
|
|
No it wont there are still some services taht do it for free  |
|
| Back to top |
|
 |
zander God Like

Joined: 14 Jan 2004 Posts: 540 Location: england
 
|
Posted: Sun Apr 03, 2005 8:46 am Post subject: |
|
|
it wont cost a penny to send a message online here are a couple of website's you can use
www.02.co.uk www.cbfmobile.com |
|
| Back to top |
|
 |
mattaustin Sentinel

Joined: 19 Jul 2004 Posts: 556 Location: Los Angeles, CA
  votes: 1
|
Posted: Sun Apr 03, 2005 5:13 pm Post subject: |
|
|
almost all US carriers have an e-mail gateway example: 5551231234@tmomail.net for tmobile. and when the user replies it will also go back to the email address that sent it. _________________ [ matt ] |
|
| Back to top |
|
 |
Cer Upgraded Agent

Joined: 03 Feb 2004 Posts: 3776 Location: Michigan
  votes: 4
|
Posted: Wed Apr 13, 2005 12:02 pm Post subject: |
|
|
I was just on CPAN and found Net::SMS. It looks like it might do what you want.
| Code: | | use Net::SMS;<br /><br />my $sms = Net::SMS->new();<br /><br /># Subscriber settings.<br />$sms->subscriberID ("123-456-789-12345");<br />$sms->subscriberPassword ("Password Goes Here");<br /><br /># send message?<br />$sms->msgPin("+1 100 510 1234");<br />$sms->msgFrom("Demo");<br />$sms->msgCallback("+1 100 555 1212");<br />$sms->msgText("Hello World From Simplewire!");<br /><br />print "Sending message to Simplewire...\n";<br />$sms->msgSend();<br /><br /># Check for errors<br />if ($sms->success) {<br /> print "Message was sent!\n";<br />}<br />else {<br /> print "Message was not sent!\n";<br /> print "Error Code: " . $sms->errorCode() . "\n";<br /> print "Error Description: " . $sms->errorDesc() . "\n";<br /> print "Error Resolution: " . $sms->errorResolution() . "\n";<br />} |
http://search.cpan.org/~rootlevel/Net-SMS-.../lib/Net/SMS.pm _________________ Current Site (2008) http://www.cuvou.com/ |
|
| Back to top |
|
 |
mattaustin Sentinel

Joined: 19 Jul 2004 Posts: 556 Location: Los Angeles, CA
  votes: 1
|
Posted: Wed Apr 13, 2005 4:45 pm Post subject: |
|
|
that module requires a paid account with Simplewire.
To send SMS requires one of 2 things. a connection to a gate way or a dirrect connection to the carrier (good luck wiht that) then you usally connect to eath one of these with SMPP (The short message peer-to-peer protocol). And some gateways have an http interface.
the last...and only free option:
most carriers on there page have a place where you can send SMS to there users... (i know most US carriers do) . You could send them in code though your bot. _________________ [ matt ] |
|
| Back to top |
|
 |
mattaustin Sentinel

Joined: 19 Jul 2004 Posts: 556 Location: Los Angeles, CA
  votes: 1
|
Posted: Wed Apr 13, 2005 4:57 pm Post subject: |
|
|
Sorry for the double post.. but MSNP11 has built in sms stuff.... Ill play with that and see if i can make it into a command.  _________________ [ matt ] |
|
| Back to top |
|
 |
colleenm40 Newbie

Joined: 30 Dec 2005 Posts: 1
    
|
Posted: Fri Dec 30, 2005 1:48 am Post subject: this will do what you want |
|
|
I believe this site will do what you want, speaking from experience
http://sms.jc-mobile.net |
|
| Back to top |
|
 |
|