I have an ftl file which is sending a notification e-mail. I need to change the subject line of these mails. So, far I have managed to change the subject and pass a URL in it. But my requirement is to pass a specific parameter from the URL. Can I write a java scriplet or javascript function inside this file.
Here is the snippet of code:
<@s.document "${emailDigestBean.containerHtmlUrl}">
<#if u.isHtml()>
<h1>${emailDigestBean.localizedText}</h1>
<#if emailDigestBean.briefDesc??>
<p id="message">${emailDigestBean.briefDesc}</p>
<p>Added By Me:${emailDigestBean.containerHtmlUrl}</p>
</#if>
${emailDigestBean.containerHtmlUrl}....contains the URL which I want to parse.
Thanks in advance.