Add Snippet |
It's easy to send SMS Messages using the SmsManager
raw · copy · downloadSmsManager m = SmsManager.getDefault(); String destination = "06761122334"; String text = "Hello, Jenny!"; m.sendTextMessage(destination, null, text, null, null);
Preview
Editors
Tags
Related Snippets
Enable and Disable WiFi
Check for Updates Once a Day
Send mms via intent
Non-Blocking Web-Request
Change phone mode to silent, vibrate, normal
Check airplane mode and roaming in current moment
Be the first to comment