Hi,
In my case, I want to redirect the user to Details Page from Email Content.
Here I used the HTML editor while creating the email template, and in that I want to give a Link to the details page (the details page needs FormID as a mandatory)
Inside the link, I want to pass the page link dynamically while I am using this template to send the email.
Here are some Additional information while adding link:
but if I pass the URL here, that will remain constant whenever I use this template.
Hi @Nihil Gujar ,
The Email template is stored in HTML format i believe.
There is no direct way to embed a link.
But we can do the same by replace method.
For example, While creating the template add a special character set to identify, Like add RplPageLink-link in the email template. While using the HTML add a string replace method and replace RplPageLink-link with <a href=+Action.UrlResult+>Visit W3Schools.com!</a> . By this way the link is dynamically pushed to the content HTML at runtime. Let us know if it works.
How do u pass the link? Using input parameter?
regards