I have this code that supposed to send sms in ios
<a href="sms:1-111-1111;body=I made it!">Send location via SMS</a>
but this is not working as will the body text is empty
I have this code that supposed to send sms in ios
<a href="sms:1-111-1111;body=I made it!">Send location via SMS</a>
but this is not working as will the body text is empty
Will not work for iOS 7. See Apple URL Schemes - SMS.
There have been claims that this used to work for iOS 5/6 -
<a href="sms:1-111-1111?body=I made it!">Send location via SMS</a>
Old threads
How to initiate/send SMS from a HTML5 webpage using devices native functions?
The below format is working in iOS 8.1 ... might want to test in iOS 7: http://jsfiddle.net/2yjbG/
<a href="sms:1234567900&body=Pre-populated">I pre-populate an SMS</a>