Within perspective its possible to initiate a SMS message if a user is using a cell connected device; using something along the lines of:
os = self.custom.source
tel = "1234567890"
mes = self.getSibling("TextArea").props.text
if os == "iPhone":
txt = 'sms://'+ tel +'/&body=' + mes
else:
txt = 'sms://'+ tel +'/?body=' + mes
system.perspective.navigate(url=txt)
So my question is, if I want to send to multiple recipients, what delimiter should I used between the phone numbers? the usual suspects (,;.) fail.
Sure, just wasn't sure if you were aware and wanted to be clear that this isn't something we just didn't document or could implement as a feature request.
ha, that's what I was missing, strange that google let me down
os = self.custom.source
tel ="1234567890,0987654321"
mes = self.getSibling("TextArea").props.text
if os == "iPhone":
txt = 'sms://open?addresses='+ tel +'/&body=' + mes
else:
txt = 'sms://'+ tel +'/?body=' + mes
system.perspective.navigate(url=txt)