send sms to multiple recipients using SMS url in iPhone

前端 未结 4 2247
醉梦人生
醉梦人生 2021-02-14 04:25

How do I send SMS to multiple recipients using SMS url in iPhone?

I am trying this but it doesn\'t work. Is there any way to send or not?



        
4条回答
  •  没有蜡笔的小新
    2021-02-14 04:41

    Unfortunately, for now, there is no way to send a SMS to multiple recipients from a web app on iPhones with the sms scheme.

    I believe a workaround is possible, if you specifically know the audience of your webapp. You could require the installation of a native app with a custom URL scheme, that creates the SMS upon request.
    This app could register on multiplesms://, read multiple phone numbers, and create the SMS (I think this is possible from different applications I've seen on the Internet, never used them though).
    So in your webapp, you could write:
    Two numbers, no body text.
    But remember you would have to require the installation of the native app on your users' iPhones.

提交回复
热议问题