Hello,
In a delivery template, in the text version, we use this code to retrieve the subject dynamically:
<% document.write(delivery.mailParameters.subject); %>
The problem is that if there is javascript inside the subject, it is not executed.
For instance, if the subject is : <%=recipient.firstName%>, how are you doing?
It won't execute the firstname variable and will display the all thing as plain text.
Is there any means for avoing this issue?
Thank you very much for your help!