...
<body>
<div class="container">
<img src="data:image/png;base64,{{new_logo_base64}}" class="logo" alt="Example Company Logo">
<h1>Dear
<#if receiver.firstnamelastname?has_content>${receivercontent>Mr.firstname} ${receiver.lastname},
<#elseif receiver.guestname?has_content>${receiver.guestname},</#if>
</h1>
<p>Thank you for using our company.</p>
<p>Your account manager ${sender.firstname} ${sender.lastname} has compiled the following documents for the <strong>${envelope.name}</strong> for you:</p>
<ul>
<#list envelope.documents as document><li>${document.name}</li></#list>
</ul>
<p>The offer is valid until ${envelope.dueDate?string("dd.MM.yyyy")}</p>
<p>Please click on the following link to retrieve the document:</p>
<!-- Add your document retrieval link here -->
<a href=${envelope.urlGuest}>Sign Documents</a>
</div>
<div class="footer">
Example Company GmbH<br>
ExampleStreet 123, 10115 Berlin<br>
Handelsregister: Amtsgericht Berlin, HRB 123456<br>
USt-ID: DE123456789
</div>
</body>
</html> |