tags:

views:

88

answers:

4

Exccuse me,

may I ask is there any API for sending SMS mesaages to mobile phone through programming?

If there is any, may I ask if there is any recommended one which is morer reliable and have more reasonable prices?

A: 

Take look at Smpp OpenSource

SUMMARY:

SMPP stands for Short Message Peer to Peer. It is a communication protocol designed for transfer of short messages between short message centre and SMS application.

adatapost
+1  A: 

Using SMPP is overkill unless you are planning to send smses at the speed of 50 a second or more.

For incidental sending of SMSes you can use HTTP calls to a SMS gateway. The Call will be similar to:

http://www.somesmsgateway.com/api.php?to=31612345678&msg=helloworld&username=yourusername&password=yourpassword

an example of such a gateway is clickatell

Toad
There are a *lot* of gateways with many and various APIs - make sure you look at costs and try and find independent assessments of reliability.
Murph
A: 

Take a look at http://www.acrosscommunications.com/

Eugene Osovetsky
A: 

Zeep Mobile or use an Aggregator

Phill Pafford