Questions tagged as 'sms'

0
answers

Sending SMS via WebSite [duplicate]

I am developing a delivery website where I would like the customer to send an SMS to his cell phone when the customer completes the order. Would it have some form (free of preference, but can be paid as well) to do this using some asp scrip...
asked by 27.04.2017 / 15:18
1
answer

HttpRequest php error

I can not use the script because of the class HttpRequest I have already downloaded several classes and always the error: ( link )      $request = new HttpRequest(); $request->setUrl('https://api.infobip.com/sms/1/text/advanced'); $request-...
asked by 17.11.2016 / 11:56
1
answer

Problem with SmsManager

I have the following code to send an SMS with the text of an EditText, this within an Alert ImageButton btnCancelar = (ImageButton) view.findViewById(R.id.btnCancelar); ImageButton btnOk = (ImageButton) view.findViewById(R.id.btnOk); E...
asked by 14.06.2016 / 00:07
0
answers

SMS SOAP Web Service

I have my own SMS sending code in PHP SOAP Web Service as you see below: <?php try { $webservice = new SoapClient("https://services.tvest.net.br:62003/sys/wsdl", array("trace" => 1, "login" => "blabla", "password" =>...
asked by 09.06.2016 / 19:25
1
answer

Send google maps address of an app in message to the mobile phone?

I'm creating an app in Android Studio, and I'm having a problem. The app contains Google Maps where it shows us our location, but what I would really like to do was, that at the push of a button, our location would be sent by SMS to a mobile...
asked by 29.07.2015 / 18:19
1
answer

How do I know if SMS failed to send?

I have this method of sending SMS via application: public boolean enviaSMS(String fone, String mensagem) throws Exception { try { smsManager.sendMultipartTextMessage(fone, null, smsManager.divideMessage(mensagem), n...
asked by 10.02.2016 / 14:53
0
answers

How to send multiple sms through an android application

In my application I'm trying to send multiple SMSs, but sometimes it does not send. smsManager.sendMultipartTextMessage (telefones.get(i), null,smsManager.divideMessage("Mensagem"), null, null); try { SmsManager smsManager = SmsManager.ge...
asked by 20.11.2014 / 19:07
1
answer

SmsManager sending SMS

I'm trying to send an SMS with the following code: final SmsManager smsManager = SmsManager.getDefault(); smsManager.sendTextMessage("phone", null, "Message", null, null); But nothing happens, it runs the code, there is no error and it...
asked by 14.07.2015 / 14:47
1
answer

How to send sms using javascript or angular or node.js [closed]

I need a method or api that sends sms for free, it can be from my same tim number (I have sms plan), I searched and just found some easy to use payments. I am preparing for a university hackathon and I need to produce this to have a differential...
asked by 20.10.2017 / 17:53
1
answer

PHP - Sending background request (SMS HTTP API)

I am making a form which once it is sent, it should send an SMS thanking the contact for the number in which it was informed on the form.    I have the following form: <form action="processa.php" method="post"> <div>...
asked by 04.01.2017 / 08:53