I have been looking around how to send a message for mobile devices through the OpenUrl("sms:") method and can't seem to figure out how to send to multiple phone numbers... I am trying on an iPhone with iOS 8.1.2 and I'm currently using
Application.OpenURL(string.Format("sms:{0}&body={1}", number, WWW.EscapeURL(message)));
Also, how can I get the message in there without using WWW.EscapeURL())? Every time I use this it gives me a "+" in between each space. But if I remove the WWW.EscapeURL() then it doesn't start the message sending.
Thanks in advanced!
↧