function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
john8407john8407 

HTML Email Template Link tag

Can someone help me out here.  What am I missing?

 

<a href="{!Case.Link}">Click here</a>

 

Pradeep_NavatarPradeep_Navatar

Check whether the link is a standard field or a cutom field. Use link__c instead of link, in case it is a custom field and modfy your code as :

 

<a href="{!case.link__c}">Click here</a>

john8407john8407

case.link is not a custom field though.  Its a selection that basically puts a link to the case and is salesforce functionality