I\'m sending SMS in my Android App,
SmsManager sm = SmsManager.getDefault();
String number = \"1234567890\";
sm.sendTextMessage(number, null, \"Test
No. It is not possible. Here are multiple reasons why:
SmsManager you encode it with the content - the actual text message itself. You also encode it with the phone number you are sending it to. And you encode the message center number to the message. That is all you get to encode. Then Android/hardware handles sending it over to the cell phone tower where it is then out of your hands.