dotMobimobiThinkingmobiForgemobiReadyDeviceAtlasgoMobi

Posted by mobilemadness 4 years 32 weeks ago

pic
 mobilemadness
mobiForge Newbie
Posts: 2
Joined: 4 years ago
[offline]

Hi All

Does anyone know if there is an alternative to using

<a href="sms:0800500500?body=Hi">Click to send message</a>

This isn't working on all handsets ;( so i would imagine we would need some kind of addaptaition.

So far i have tested it on the following:
Nokia series 60
Sony Ericsson

The following don't work - it shows an error
Blackberry 8700
Motorola
Samsung

Does anyone know of any alternatives?

Thanks.

Posted by atrasatti 4 years ago

pic
 atrasatti
dotMobi logo
Mobile Genius
Posts: 325
Joined: 5 years ago
[offline]

Unfortunately sms: is not an official protocol. Some companies like Sony Ericsson decided to add it and support it.
Probably some Samsung will support sms: some others will not as they embed different browsers in different models.

I don't think there is a real alternative that will work on all browsers, unfortunately.

Andrea Trasatti
Blog: Andrea Trasatti's tech notes and more

Posted by schwoortz 4 years ago

pic
 schwoortz
mobiForge Newbie
Posts: 6
Joined: 4 years ago
[offline]

But it does work on S60 and Motorola (which??). That's interesting.

Michael

-- Michael Schwarz / Berlin
Web Frontent Development

http://www.htmlexperts.de/ http://www.mobilewebdesign.de/

Posted by mathiastck 3 years ago

pic
 mathiastck
mobiForge Newbie
Posts: 2
Joined: 4 years ago
[offline]

some phones seem to require smsto: instead. It's all in WURFL now.

Posted by vadim 3 years ago

pic
 vadim
mobiForge Newbie
Posts: 2
Joined: 4 years ago
[offline]

Quote:
it's all in WURFL now.

It`ll be very usefull to add it to DeviAtlas too

-- http://voituk.kiev.ua/

Posted by atrasatti 3 years ago

pic
 atrasatti
dotMobi logo
Mobile Genius
Posts: 325
Joined: 5 years ago
[offline]

With the update of TA-DA we have now added two new properties, uriSchemeSms and uriSchemeSmsTo.

Information is now coming from TA-DA only, so you are more than welcome to test it directly on your device. Information coming from our sources, including WURFL, will start popping up quickly.

Posted by Barry Jenkinnz 3 years ago

pic
 Barry Jenkinnz
mobiForge Newbie
Posts: 3
Joined: 3 years ago
[offline]

It's a shame that it's hit or miss like that ;\

Posted by daniel.hunt 3 years ago

pic
 daniel.hunt
dotMobi logo
Mobile Grandmaster
Posts: 230
Joined: 4 years ago
[offline]

It certainly is :(

I've tested using 2 Series 60 Nokia devices and neither of them support smsto. We can only hope that enough people run through TADA so we can build up an accurate picture of the devices that support sms/smsto/both!

Daniel Hunt
dotMobi

Posted by atrasatti 3 years ago

pic
 atrasatti
dotMobi logo
Mobile Genius
Posts: 325
Joined: 5 years ago
[offline]

vadim wrote:
It`ll be very usefull to add it to DeviAtlas too

We recently added the property to DeviceAtlas, if you did not notice. Sources are currently WURFL and our own testing via TA-DA.

Get working with it, then! :)

Posted by godsofchaos 3 years ago

pic
 godsofchaos
mobiForge Enthusiast
Posts: 10
Joined: 3 years ago
[offline]

Whoa thats awesome news! I think I should get working on it too.!

Nokia S60 Symbian Themes Developer

Posted by wasia 2 years ago

pic
 wasia
mobiForge Newbie
Posts: 4
Joined: 2 years ago
[offline]

SMS: works well on all decent Nokia S60, SE.
Also it works with most newsest LG and Samsungs, like S8000 Jet, S5230, KP500 and so on
It works with Motorola based on MotoMagx(V8) and iPhone, but embedding SMS text is not supported

Nokia S40 works well with mailto: instead of sms: :)

p.s. Note, that when user is using Opera Mini things change a lot

Posted by mathiastck 2 years ago

pic
 mathiastck
mobiForge Newbie
Posts: 2
Joined: 4 years ago
[offline]

Great thread. I'm enjoying going through the tests on the Droid right now. Good stuff, now I just have to figure out how to resume them.

Posted by MisterSCOTCH 2 years ago

pic
 MisterSCOTCH
mobiForge Newbie
Posts: 1
Joined: 2 years ago
[offline]

Hi all....thanks for all the information in this thread. I am also working with the wtai protocol but in a slightly different way. I am creating html files including wtai links for sending a sms with prefilled body and send them to phones via bluetooth.

I know about the difference with "sms" and "smsto". On SonyEricsson, both is working but the issue is that the SE phone includes an unknown character at the very beginning of the body but deletes the last character. The first character seems to be a linebreak since the phone shows that the message is 2 or even 3 sms long but it's definitively less than 160 chars. When i delete the first unknown character, the phone says, the message is only 1 sms.

Afaik this happens only on phone like the SE K800, W850 (at least i have them both here for testing). Phones like the K750 or W800 don't show this issue.

Here is the code i am using

<a href="smsto:88044?body=KEYWORD%20This%20is%20the%20body">Send us your answer</a>

Did anyone encounter something similar?

PS: to get rid of the issue of deleting the last character, i simply put a white space using %20 at the end of the body.