Is there a way I can just provide the opportunity link? I've tried {!Quote.Opportunity.Link} etc. but even {!Quote.Opportunity.Name} won't work - they just come up blank.
2 respuestas
I am guessing you'll have to create a Formula Field on the Quote object and then use that on the Email Template like as below:
Formula Field Label: Opportunity Link
Formula Field Return Type: TEXT
Formula:
HYPERLINK(
LEFT($Api.Enterprise_Server_URL_320, FIND('/services', $Api.Enterprise_Server_URL_320)) & OpportunityId,
LEFT($Api.Enterprise_Server_URL_320, FIND('/services', $Api.Enterprise_Server_URL_320)) & OpportunityId,
'_blank'
)