Sending SMS with SmsManager

1 vote · 0 comments

It's easy to send SMS Messages using the SmsManager

raw ·
copy
· download
SmsManager m = SmsManager.getDefault(); String destination = "06761122334"; String text = "Hello, Jenny!"; m.sendTextMessage(destination, null, text, null, null);

Be the first to comment

Sign in with OpenID