I have used this code to send sms in my mobile app using angularjs. <a ng-href={{'sms:'+data.mobile1}}><i class="material-icons">message</i></a>
But its not working. Can someone help me?
You have to bind to ng-href
the following way
ng-href="sms:{{data.mobile1}}"