It's easy to send SMS Messages using the SmsManager.
SmsManager m = SmsManager.getDefault();
String destination = "xxxxxxxxxxx";
String text = "Hello, Jenny!";
m.sendTextMessage(destination, null, text, null, null);
No comments:
Post a Comment