SmsManager use for SMS operations like sending information to the any given mobile device. We create this object by the below method.
SmsManager.getDefault()
SmsManager sManager = SmsManager.getDefault();
Then we can send any data by using this below method.
sendDataMessage()
sManager.sendTextMessage("mobileNumber", null, "Message", null, null);
0 Comment(s)