Questions tagged [sms]

Short Message Service (SMS) is the standardized text communication service component of phone, web or mobile communication systems that allow the exchange of short text messages between fixed line or mobile phone devices.

Short Message Service (SMS) is the text communication service component of phone, web or mobile communication systems, using standardized communications protocols that allow the exchange of short text messages between fixed line or mobile phone devices.

The term SMS is used as a synonym for all types of short text messaging as well as the user activity itself in many parts of the world.

Source

7611 questions
2
votes
1 answer

How to open specific conversation in default sms app in Android 6 (api 23)

I am using the code from this answer:How to open specific sms in Android and it works perfectly. But on Devices with Android 6.0 (apiVerion >= Build.VERSION_CODES.M) my App crashes. CrashLog: android.content.ActivityNotFoundException: No Activity…
Matej Scolopax
  • 189
  • 1
  • 8
2
votes
1 answer

Cannot delete SMS programatically (Default SMS app set)

I try to delete all SMS from my phone with this func: public void wipeOutAllSMS(Context context) { try { int rowsDeleted = 0; Uri uriSms = Uri.parse("content://sms/inbox"); Cursor c =…
Adam Varhegyi
  • 11,307
  • 33
  • 124
  • 222
2
votes
2 answers

Send Message to phone using Codeigniter

I have a codeigniter base website and I have tried making forgot password by Phone and Email using Codeigniter framework to change password notification.And email is already working but I don't know how to send message to phone using…
Jay Kareliya
  • 760
  • 7
  • 21
2
votes
2 answers

How to send SMS from a batch script?

Is is possible to send an SMS message out of a batch script in Windows? Any SMS gateway, that supports it? etc.
colemik
  • 1,417
  • 2
  • 20
  • 24
2
votes
2 answers

How to send more than 160 characters SMS in android?

I have some code to send SMS from my application but this code only send 160 characters and cannot send more than 160. This is my code : protected void sendMessage(String message){ String phoneNumber = "xxxx"; try { …
Nicholas
  • 119
  • 2
  • 17
2
votes
2 answers

Is there any development tool for sending sms from my computer to mobile phones?

I want to develop an interface in my computer that will send sms from a text box to the computer attached phone(which has gsm based SIM) and phone will deliver that sms to a particular number(the number will also be given in text field). I want to…
2
votes
1 answer

onReceive not getting called when SMS data is sent

I am creating an app on android that needs to be able to allow android devices to send SMS data back and forth with SmsManager.sendDataMessage(). For some reason when I try to send data this way my sms receiver doesn't ever get anything. What am I…
sabo
  • 911
  • 13
  • 37
2
votes
1 answer

iphone how to make "To" field like sms applicaiton

How can I can I make a "to" field like sms application? Like, having a "+" button to right, when adding someone the name will be highlighted and clickable like the rounded rect etc. Is there any built in framework?
karim
  • 15,408
  • 7
  • 58
  • 96
2
votes
1 answer

Provide customers a SMS without changes

I am looking up, whether there is technically a way to provide a SMS service where anytime someone sends/receives a text message, it's free for them, and the cost is on me. Integration with twilio is a must. E.g. if a customer's text messaging plan…
Quincy
  • 1,710
  • 14
  • 20
2
votes
1 answer

Android 5.0.2 - SMS Broadcast Receiver - can not get it working

I am testing on Xiaomi Redmi Note 3 and what I need is very simple: * Register broadcast receiver for incoming text messages * Once message comes in, just read it It looks like I can not get receiver register no matter what I try. From the google…
Dimitar Vukman
  • 421
  • 6
  • 15
2
votes
0 answers

Unable to test send and receive SMS with Android Studio 2.1.1 emulator

I'm trying to test an application that sends a SMS automatically, and I want to test this functionality with the emulator to avoid SMS costs. In order to do so, I started two emulators and used the port as the phone number to send the SMS from one…
Jofre Mateu
  • 2,390
  • 15
  • 26
2
votes
0 answers

Delete or avoid receiving messages to default message app kitkat+

I'm trying to make a message application, which work along side the default messaging application. My application needs to intercept messages sent from a particular sender and not let default message application receive it. All other messages should…
pahan
  • 567
  • 1
  • 8
  • 22
2
votes
2 answers

Write received message to SMS provider ( API level 19+ )

I am creating an SMS manager for KitKat and later version. I have implemented all the receivers as directed in the official doc by android. I have to receive the SMS SMS_DELIVER broadcast receiver and read it and then have to write to the SMS…
Sagar Nayak
  • 2,138
  • 2
  • 19
  • 52
2
votes
4 answers

SMS Broadcast Receiver not working

Alright, I have tried every solution on Stack and nothing works.My current method registers the "SmsListener" receiver from the MainActivity. All I'm trying to do is initialize the onReceive method. There are no errors; It simply isn't picking up a…
metamonkey
  • 427
  • 7
  • 33
2
votes
1 answer

How to send sms/email on scheduled time in iOS

I want to build an app in swift to send sms or email on scheduled date and time and the data need to be stored in database. I know we need to use MFMessageComposeViewController or MFMailComposeViewController for sending sms/email but how to send…
Eltaf Hussain
  • 3,071
  • 1
  • 14
  • 20
1 2 3
99
100