Send Sms To Multiple Recipients Using Sms Url In Iphone
Solution 1:
Use this:
sms:/open?addresses={phone number1},{phone number2},...
Solution 2:
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:
<a href="multiplesms:+3581234567,+3582234567">Two numbers, no body text</a>
.
But remember you would have to require the installation of the native app on your users' iPhones.
Solution 3:
Try
<ahref="sms:+3581234567,+3582234567">Two numbers, no body text</a>
Source: developer.nokia.com and openmobilealliance.org (page 20)
If it doesn't work, I would try
<ahref="sms:+3581234567;+3582234567">Two numbers, no body text</a>
Solution 4:
The custom uri scheme seems to be an interesting approach to solve this problem, but we have to make specific iOS app or use an existing and compatible iPhone app, that I didn't find. Actually, only the first number of the list is used and iOS exclude all after the comma. If there are no ways to solve this, which is specific to iPhone, we have to use an SMS gateway (and pay each sms).
Hope someone have a solution.
Post a Comment for "Send Sms To Multiple Recipients Using Sms Url In Iphone"