Skip to content Skip to sidebar Skip to footer

Send Sms To Multiple Recipients Using Sms Url In Iphone

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? sms

Solution 1:

Use this:

sms:/open?addresses={phone number1},{phone number2},...

Solution 2:

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"