I am trying to insert a URL into an EMAIL module, but would like to display it with a NAME (vs. the full URL). In Google Sheets/Excel, we can use =HYPERLINK(“URL”,“NAME”).
Is there a similar function in MAKE, or is there a combination of other functions that could make this work similarly?
Thanks,
Brian
Hello there,
In Make, you just need to add a basic HTML tag for hyperlinks in the body content.
Hope this helps!
3 Likes
I thought so - but for some reason, its not coming through in the email.
Link to Application:
<a href="https://xxxx.my.salesforce.com/{{fieldname__c}}">{{fieldname2__c}}</a>
Hello Brian,
Can you try the below?
<a href = "https://xxxx.my.salesforce.com/{{fieldname__c}}">{{fieldname2__c}}</a>
3 Likes
Seems I needed a starting tag at the top of the email
- now working - thanks!
4 Likes
Nice.
Thanks and happy Holiday ahead!
3 Likes