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
pirouz sourati zanjanipirouz sourati zanjani 

Formula Field with hyperlink in visualforce email template

hi
sorry i'm new at visualforce. i have formula field with HYPERLINK("google", "click here"). something like that
i want to show this field in my visualforce email template
like: for more info you can  click here
but after inserting the field i get result like <a><href="google" target = blank ..., "click here"></a>
is there anyone here to help me with this problem ??
Raj VakatiRaj Vakati

Use apex:outputLink and t

 
<apex:outputLink value="{!object.FieldName__c}" id="theLink">www.salesforce.com</apex:outputLink>


Or you can use a tag also as shown below
 
<a><href="{!object.FieldName__c}" target = blank ..., "click here"></a>

 
pirouz sourati zanjanipirouz sourati zanjani
ok i tried that still no success 
here is the hyperlink of my field:
HYPERLINK( $Label.CM_AttivNuoURL ,"Clicchi QUI")

any tips ?