Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Programmatic SMS [closed]

Tags:

mobile

sms

What is the best way to programmatically send an SMS text message?

Are there any free Web Service based SMS gateways?

I know that if I happen to know the user's carrier (Sprint, AT&T, etc), I can send an SMS by emailing an address based on phone number + carrier. I would like a good solution that does not require me to know the carrier. Barring that, is there an easy way to lookup carrier given a cell phone number?

I understand that there are some services independent of the major mobile carriers that offer a per-message fee-based service, with API. What I would like to know is how such organizations tap into the SMS networks. Do they have contracts with mobile carriers to resell their services?

like image 398
Seibar Avatar asked Aug 07 '08 01:08

Seibar


People also ask

Is there any free API to send SMS?

A free SMS API allows you to set up an SMS gatewayto send SMS messages directly from a software or application solution. Thus, the integration of SMS sending requests in the heart of your algorithms allows you to automate the sending, receiving and control of SMS messages from your website or your business software.

How does SMS API work?

A SMS API is well-defined software interface which enables code to send short messages via a SMS Gateway. As the infrastructures for SMS communications and the internet are mostly divided, SMS APIs are often used to 'bridge the gap' between telecommunications carrier networks and the wider web.


2 Answers

Use http://www.twilio.com/

They have a REST interface to send SMS's and even to establish phone calls or receive phone calls.

You even get 30$ credits to try it out.

Def. the cheapest solution you will find.

like image 185
Christian Joudrey Avatar answered Sep 18 '22 08:09

Christian Joudrey


Where I work we've been using http://www.clickatell.com for sending out SMS - it looks like its about 6 or 7 cents a message. They just take http POST requests to send out a message. I don't know if you'll be able to find any good free gateways. We used to send out emails, but found they were unreliable.

like image 29
Angus Avatar answered Sep 21 '22 08:09

Angus