User Control Panel
Advertisements

HELP US, HELP YOU!

sms send

 
Post new topic   Reply to topic    Bot Depot Forum Index -> General Programming Questions
View unanswered posts
Author Message
infernothebest
Newbie
Newbie


Joined: 20 Mar 2005
Posts: 13

Reputation: 14

PostPosted: Sat Apr 02, 2005 10:29 am    Post subject: Reply with quote

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
Not Yet a God


Joined: 29 Dec 2004
Posts: 367
Location: Australia
Reputation: 32.2Reputation: 32.2Reputation: 32.2

PostPosted: Sat Apr 02, 2005 12:32 pm    Post subject: Reply with quote

please make your message clearer.
Back to top
Dazzy
Agent
Agent


Joined: 09 Jan 2004
Posts: 1731

Reputation: 72.3

PostPosted: Sat Apr 02, 2005 1:04 pm    Post subject: Reply with quote

I think he wants a command to send text messages to a mobile...
Back to top
draget
Not Yet a God
Not Yet a God


Joined: 29 Dec 2004
Posts: 367
Location: Australia
Reputation: 32.2Reputation: 32.2Reputation: 32.2

PostPosted: Sat Apr 02, 2005 1:30 pm    Post subject: Reply with quote

use a online texting service.

will cost you though.
Back to top
mat007
Almost An Agent
Almost An Agent


Joined: 12 Jan 2004
Posts: 1375

Reputation: 15.8Reputation: 15.8
votes: 2

PostPosted: Sat Apr 02, 2005 1:49 pm    Post subject: Reply with quote

No it wont there are still some services taht do it for free Smile
Back to top
zander
God Like
God Like


Joined: 14 Jan 2004
Posts: 540
Location: england
Reputation: 66.6

PostPosted: Sun Apr 03, 2005 8:46 am    Post subject: Reply with quote

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
Sentinel


Joined: 19 Jul 2004
Posts: 556
Location: Los Angeles, CA
Reputation: 50.7
votes: 1

PostPosted: Sun Apr 03, 2005 5:13 pm    Post subject: Reply with quote

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
Upgraded Agent


Joined: 03 Feb 2004
Posts: 3776
Location: Michigan
Reputation: 146.9
votes: 4

PostPosted: Wed Apr 13, 2005 12:02 pm    Post subject: Reply with quote

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
Sentinel


Joined: 19 Jul 2004
Posts: 556
Location: Los Angeles, CA
Reputation: 50.7
votes: 1

PostPosted: Wed Apr 13, 2005 4:45 pm    Post subject: Reply with quote

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
Sentinel


Joined: 19 Jul 2004
Posts: 556
Location: Los Angeles, CA
Reputation: 50.7
votes: 1

PostPosted: Wed Apr 13, 2005 4:57 pm    Post subject: Reply with quote

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. Smile
_________________
[ matt ]
Back to top
colleenm40
Newbie
Newbie


Joined: 30 Dec 2005
Posts: 1

Reputation: 4.3Reputation: 4.3Reputation: 4.3Reputation: 4.3

PostPosted: Fri Dec 30, 2005 1:48 am    Post subject: this will do what you want Reply with quote

I believe this site will do what you want, speaking from experience

http://sms.jc-mobile.net
Back to top
Display posts from previous:   
Post new topic   Reply to topic    Bot Depot Forum Index -> General Programming Questions All times are GMT
Page 1 of 1

 



Protected by phpBB Security phpBB-TweakS
phpBB Security Has Blocked 9 Exploit Attempts.
Antispam Captcha Mod by phpbb-security.com
Powered by phpBB © 2001, 2005 phpBB Group