Monday, September 2, 2013

Auto calling and e-Mailing in ADF Mobile App

In ADF mobile if you want to implement email functionality ,you have to use below code.
With this code when you click on this link ,this will automatically will ask you to send with which email domain you want to send.
<amx:goLink url="mailto:sreedhar.reddy@3disystems.com"></amx:goLink>

You Can keep Subject , CC , BCC and Body also configurable.

<tr:goLink styleClass="messageText"
text="#{sessionScope.empDetails.Email}"
destination="mailto:#{sessionScope.empDetails.Email}?subject=howdy&cc=myboss@oracl
e.com&bcc=me@oracle.com&body=howdy partner!"/>

If you want to auto calling functionality in ADF mobile ,use below code.
<tr:goLink text="3256897589" destination="tel:3256897589/>

No comments:

Post a Comment