Hi,
I have used "urlforrecord" in the email template to provide a link/url to the users. But, then email has been generated and clicked on the url, it is trying to open the record in "tempo" instead of "site"
=urlforrecord(cons!AT_EMPLOYEERECORDTYPE,pv!employee2.employeeId)
How can I provide link to the "site" instead of "tempo".
Thanks
Discussion posts and replies are publicly visible
You need to do some string substitution yourself
substitute( urlforrecord(cons!CASE_RECORD_TYPE, {ri!recordId}), "tempo/records/{recordIdentifier}", "sites/{site-name}/page/{page-name}/record" )
Great. Thank you so much for your quick reply.