How to get value from Sales order, in an Item fulfilment email template?

Scenario: While creating Item fulfilment email template, if we want to take data from the sales order record, such as order date etc.

Use the following code.

<#assign salesOrder = record.createdfrom>
<#if salesOrder?has_content>
<p>Sales Order Date: ${salesOrder.trandate}</p>
</#if>

Leave a comment

Your email address will not be published. Required fields are marked *