...
Code Block |
---|
${envelope.dueDate?string("dd-MM-yyyy")} ${document.dueDate?string("dd.MM.yyyy")} |
To retrieve information about the documents in an envelope, it’s possible to iterate over the document list.
e.g.
Code Block |
---|
//prints all document names in a bulleted list
<ul>
<#list envelope.documents as document>
<li>${document.name}</li>
</#list>
</ul> |
Please note that not all fields are present in every email, so it is advised to wrap them with if-statements as followed:
...