IPhone: URL scheme not working with email client

I have created url schemes in my application. I just wanted to open my application from email. I copy the myapp : // custom url scheme in the browser and open my app. But when I try to open it from email in the iOS mail client, it doesn't open. Is there anything else I need to do to open my app from email?

+3


source to share


1 answer


In the email element, you have to write the content in html format. You need a hyperlink here, so there should be<a href> ... </a>

For example:



<a href="myapp://">Launch MyApp</a>

      

Hope it helps.

0


source







All Articles