vote up 1 vote down star

Does anyone know any sms api i can use in my web application to send sms to users?

flag

3 Answers

vote up 3 vote down

http://www.zeepmobile.com

i use them. i love them.

they will inject ads into the end of your texts, but it's a small price to pay for a free SMS API. You can both send and receive SMS through your website with their API

PS if you are looking for ways to implement their API, I've done it. Check the "zeep" tag here for some questions I had and their corresponding answers.

link|flag
does it only allow US? – Hoe Chin Jul 30 at 1:21
@hoe chin - at the moment, yes. – Jason Jul 30 at 1:25
vote up 1 vote down

Most mobile providers support SNPP (Simple Network Paging Protocol). Despite the name, SNPP is also used to send text messages to cell phones. It's really easy to use. Just determine which mobile provider each user is using and then dispatch a "page" to the corresponding SNPP server.

For example, Sprint's SNPP server is snpp.messaging.sprint.com:444. The basic process goes like this:

  1. Open a connection to the SNPP server.
  2. Send PAGE The phone number
  3. Check for status code 250 in the reply.
  4. Send MESS Your message
  5. Check for status code 250 in the reply.
  6. Send SEND
  7. Again, check for status code 250
  8. Send QUIT

Some servers also support subject lines and delayed messages, along with two-way messaging.

link|flag
this is super interesting... the only problem is, so many different providers means lots of messiness with registration with your users. – Jason Jul 30 at 1:15
True. You would have to ask them which carrier they are using, as I can't find any kind of API to resolve a phone number to a carrier. Could have sworn there was one, though... – David Brown Jul 30 at 1:40
vote up 0 vote down

I think you may have a problem here...

SMS's always end up costing someone, something... You may get lucky and find a provider that has a beta or test account that allows you to send out a handful, but they may not last that long.

I used to use a place that put a 20 character advert on the end of every message, but even they stopped.

Just did a quick google for you and could not come up with any... If you are more specific such as country, you may get better answers...

edit - Just seen someone else answering with a site that looks good! - My comment is based on the UK! I am still not aware of any free provider here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.