Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sending SMS from Web Application [closed]

Tags:

java

sms

I am developing a web application in which I need to SMS and Email.Sending Email can be easily done but I need help in sending SMS.So for a beginner who dont know even what API's are required to send SMS,what All are required to send SMS.I mean to

  • Is there any SMS gateway required?
  • Any requirement of server? I found some links like and this But this are using some kind of dongle/GSM network.But suppose for a web application how to do this because I can not connect a USB dongle on client side.Any help is appreciated
like image 314
SpringLearner Avatar asked Oct 15 '13 05:10

SpringLearner


People also ask

Can a website send text messages?

You can send text messages from your web browser on any computer. Using Google Voice, you can make calls and send desktop text messages easily. You can also send text messages from an email client through a number-based address.

How do I resolve an issue with SMS?

Fix problems sending or receiving messagesMake sure you have the most updated version of Messages. If you have a SIM card, ensure that it is inserted properly. If you're on Fi, sign in to the Project Fi app. Verify that Messages is set as your default texting app.


2 Answers

You can use RESTFul API such as

  1. Twillio (http://www.twilio.com/docs/api/rest/sending-sms)
  2. Plivo (https://plivo.com/docs/api/message/#message)
  3. Tropo (https://www.tropo.com/docs/scripting/quickstarts/sending-text-messages)
  4. Call Fire (https://www.callfire.com/products/text-messaging)

and there will be many more as well.

like image 194
Gaurang Jadia Avatar answered Oct 11 '22 05:10

Gaurang Jadia


Having a gateway is not a must. If you don't have a gateway what you can do is use your mobile phone or dongle as a serial modem and send SMS through that.

One of the most popular libraries that you can use is Ozeki. It includes an example code pack.

like image 29
Thusitha Thilina Dayaratne Avatar answered Oct 11 '22 05:10

Thusitha Thilina Dayaratne