1

I'm sending an HTML email with some informations for the user, however I want to make a deep link for an app.

I tried to make something like this:

<p><a href="intent://tecnonutri://diary/#Intent;">Abrir Meu Diário</a></p>

But when I send the email there is no link on the tag.

Felipe Augusto
  • 7,733
  • 10
  • 39
  • 73
  • Possible duplicate of [Email issue (send hyperlink in email body) android](https://stackoverflow.com/questions/12004097/email-issue-send-hyperlink-in-email-body-android) – scoopzilla Nov 27 '17 at 17:29

1 Answers1

0

Felipe Augusto, may be you can try like this it'll work

<form action="your://linkhere" target="_blank">
    <input type="submit" value="value" />
</form>
Yash Gupta
  • 21
  • 3