Reputation: 677
I am trying to send a link via a email (sendgrid templates) but the link does not display as clickable or as a link at all.
Here is my intent: intent://myapphere#Intent;scheme=http;package=com.app;end
and here is the link in my sendgrid template:
<a universal="true" href="intent://myapphere#Intent;scheme=http;package=com.app;end">
Open App </a>
But when this is sent as an email both through the Node v3 api and through sendgrid dashboard, it appears like a text, not like a link. How can I sort this out so that Open App is clickable from the email?
Upvotes: 1
Views: 2283
Reputation: 677
For anyone who was/is trying to figure this out, here is the approach I finally decided to go with.
Upvotes: -1
Reputation: 2273
SendGrid only tracks http://
or https://
as links. the intent://
is not recognized as a link, and won't be tracked.
Upvotes: 1