How to initiate/send SMS from a HTML5 webpage using devices native functions?

后端 未结 3 1886
生来不讨喜
生来不讨喜 2021-01-31 11:02

I am wondering how can I open the send SMS application by using a web control of a HTML5 page on Android and iPhone. I want to use the device native SMS sending app, with a prep

3条回答
  •  清酒与你
    2021-01-31 11:33

    Further to other answers I can confirm that smsto:555:bodytext does not work on an iPhone running iOS5.

    What does work (and I've tested it) on Android is the format:

    sms:444?body=hello
    

    Example:

    Tap to say hello!
    

    On iPhone the ?body=hello will prevent it working at all, and you should use just sms:555 instead.

    sms:555

    Example

    Tap to text us!
    

提交回复
热议问题