It is very simple to send sms using Android code -
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(NUMBER, null, MESSAGE, null, null);
and if you want to capture all events related to SMS, such as SMS sent, delivered, you can link to the link provided in this post by @Ian Newson. Thanks
source
share