html - Opening SMS app from feature phone's mobile browser? -


via python/django or html, possible access/open sms app mobile browser?

it's okay if sms routed through user's own mobile carrier (like normally), , billed said user well. don't want create own sms gateway provide platform sending such messages. i'm interested in calling sms functionality mobile browser.

i've seen examples of: <a href="sms://+14035550185">send sms</a> i'm unsure how extensively work. need robust solution works across expansive range of mobile browsers (esp. old-school feature phones). don't want have use html5 or javascript. old-school feature phone browsers i'm targeting aren't javascript-enabled - it's bottleneck.

i added following in template , got desired results: <a href="sms:+1234?body={{ link.description }}" style="color:blue;background-color:#ffa500">sms</a>

don't mind django tag: {{ link.description }}

the generic usage <a href="sms:1234567?body=hello world">send sms</a>


Comments