Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to be able to launch the iPhone and/or Android SMS app with "body" or "message" field already having the correct text.

I came across this question however the top answer was only partially working for me and it didn't ask everything I was looking for.

From what I can tell, either of the following will launch the sms app on my iPhone and gives the correct number to send it to.

<a href="sms:1-234-567-8901">Send SMS</a>
<a href="sms:12345678901">Send SMS</a>

As soon as I ad something like ?body=hello or ?message=hello it fails to bring over the phone number and body text.

These fail:

<a href="sms:1-234-567-8901?body=hello">Send SMS</a>
<a href="sms:12345678901?message=hello">Send SMS</a>

Any help or insight would be greatly appreciated!

share|improve this question

1 Answer

up vote 2 down vote accepted

I'm afraid the answer won't be what you're hoping for - currently neither Android nor iOS will let you launch an SMS from the browser with a pre-populated message body. You can only trigger a blank SMS from the browser to a specific number. This holds for all versions of iOS, and whilst I haven't tried it out on Android 4.0, I don't see anything pointing to a change. Sorry that it isn't better news!

Here's Apple's complete list of URL schemes that they support: Apple's URL Scheme Reference,

share|improve this answer
Do you happen to know of any javascript library that night be able to replicate this? Also, do you have any documentation supporting your answer? It's not that I don't trust you, it's just that I'd like to read more on it if possible. -Thanks – bigmike7801 Feb 9 '12 at 19:52
Sure, no problem - I've added a link to Apple's URL reference. A JavaScript library isn't really going to help you: native apps can on both platforms respond to URLs, like 'tel:' or 'sms:'. But if an app doesn't support it, it's not supported period. Android is slightly different, because there is variance between the SMS apps installed on devices...but 'out of the box' it's the same situation as iOS. – lxt Feb 9 '12 at 19:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.