Internal hyperlinks in MMS

Is it possible to place an internal hypertext link (or anchor) inside the MMS. I am not suggesting an MMS user to choose between multiple links and work their way into MMS. Any idea how this is possible?

+1


source to share


1 answer


how do you compose your MMS? are you using some kind of API or gateway message compiler? or creating a message from scratch (multipart MIME)?

I suppose the default mimetype in MMS is WAP / WML (maybe application / vnd.wap.mms-message?), In which case you can design your page as a series of cards. that is, something like this:



<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
"http://www.wapforum.org/DTD/wml_1.1.xml">

<wml>

<card id="part1" title="Intro">
<p>
<go href="#part3">click to go to card 3</go>
</p>
</card>

<card id="part2" title="And More">
<p>
blah blah blah
</p>
</card>

<card id="part3" title="Target Page">
<p>
blah blah blah
</p>
</card>

</wml>

      

w3schools good tutorial on wml

+2


source







All Articles