Questions tagged as 'sms'

2
answers

Which tool to use for sending SMS in laravel [closed]

    
asked by 22.01.2018 / 14:01
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
1
answer

How to show the contents of an SMS received in Android in a text dialog?

I'm developing an Android application that sends an SMS request to a remote device and receives a reply, also via SMS, which should be presented to the user. In order to receive SMS I used the following code, which implements SmsReceiver...
asked by 19.03.2014 / 14:52
1
answer

Is there a back-end service that responds to SMS messages?

I'm doing a search on operations that involve back-end communication that uses SMS messages to interact with users. I could not find something relevant on Google that clearly explains how this service works. Anyone know where to start clearly...
asked by 27.03.2015 / 08:00
1
answer

Send and receive SMS via PC

I am doing internal software that needs some data that is received via SMS, the client sends the SMS with some information and currently I need to manually make the SMS re-sent. I plan to automate the process to become faster, more practical and...
asked by 07.04.2014 / 20:24
1
answer

How do I know if the device is a Smathphone or Tablet and / or is it capable of sending SMS?

I developed an application that is able to send an SMS with some information at the touch of a button, but one issue that concerns me is the devices that can not send SMS, type tablet's without a SIM card. Is there any way I can validate this...
asked by 26.02.2017 / 16:43
4
answers

Upload url on same page

I bought the service from an SMS company. But to send the SMS I have to "rotate" the link below: https://site.com/apiJSON.php?data={"login":"[email protected]","senha":"SENHA","campanha":"ID 1234","mensagens":{"1":{"numero":"2799999999","msg"...
asked by 11.08.2016 / 14:19
1
answer

How to receive an SMS via Codeigniter?

I have a system that uses framework PHP Codeigniter and I need to receive SMS from a GPS of those car, which will give me the coordinates of the car in the style of Google Maps and from there I save in the database coordinates and date ....
asked by 10.03.2014 / 12:31
2
answers

How to send SMS for free using PHP? [closed]

I wonder if there is any way to send SMS for free to Brazilians cell phones. I have already seen some PHP systems with this function, and I would like to have this function on my system as well.     
asked by 11.12.2013 / 17:13
0
answers

How to remove SMS after being sent?

I'm trying to send the SMS through SmsManager and then delete it from the sent items. I'm running the following code: SmsManager sms = SmsManager.getDefault(); sms.sendTextMessage(num.getText().toString(), null, msg.getText().toString(), null,...
asked by 13.09.2015 / 01:18