Hi,
I have made a design error in a mail template. I use a placeholder to contain a list of users in the form:
Username1 (email1)<br/>
Username2 (email2)<br/>
etc.
The problem is that <br/>
is not passed on a HTML tag but the literal text. I assume that Template Directives in the email template is the answer but I need directions (ChatGPT doesn't know).
My mail template looks like this. It is #STUDENTS#
that should should resolve into a list of persons:
#TEST_WARNING#Dear #NAME#,<br/>
<br/>
You have been requested to receive a copy of a Student NDA for following student(s) from ...<br/>
<br/>
#STUDENTS#<br/>
<br/>
Please click the following link to see and download your copy of the NDA. <br/>
<br/>
<a href="#COPY_LINK#">Download your copy of the NDA</a><br/>
<br/>
Best regards,<br/>
...
All input on how to fix this is appreciated. Thank you in advance.
Kind regards
Soeren D.