Describe the task
We have a template variable called job_title which is used like this in the HR email templates:
Hello |*applicant_name*|
Thanks for applying for |*job_title*|.
We found your resume interesting and ...
When the user sends this email, the system replaces these variables by their actual value based on the candidate profile. For example, the above text may look like this in an actual email that gets send:
Hello Vaibhav Rathore
Thanks for applying for Laravel Developer.
We found your resume interesting and ....
Expected behavior
We need the job title to show up as a link instead of just normal text. It should be clickable and should open the job description page that is stored in the database for that job.
Describe the task We have a template variable called
job_title
which is used like this in the HR email templates:When the user sends this email, the system replaces these variables by their actual value based on the candidate profile. For example, the above text may look like this in an actual email that gets send:
Expected behavior We need the job title to show up as a link instead of just normal text. It should be clickable and should open the job description page that is stored in the database for that job.