How to send SMS programmatically:
public static void sendSms(Context context,String number,String body) {
try{
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(number, null, body, null, null);
}catch(Exception e){ }
}
Note: Message length is limited to apprx. 160 characters.
No comments:
Post a Comment