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
VairavVairav 

Not able to see the link in email template

I created a new email Template (HTML type). and have given The Account Message can be found on the Account here <a href = domain/' +{!CusomObject.Account__c}+ ' > {!Custom Object.Account__r.Name} </a>.

 Still i am not able to see the link under account name. It displays me the whole <a> </a> tag.

 

i tried the same <a> </a> even with email template of Text Type. but, i fail to see the link.

 

Please help

NHKNHK

Hi,

 

Use the below code.

 

<a id="theLink" name="theLink" href="instance_like(cs9.salesforce.com)/"+{!Custom Object.Account__r.Name}>
{!Custom Object.Account__r.Name}</a>

 

Best Regards,

NHK