Hello,
I’m creating a customized e-mail on message center and I need to multiply the value of an item by its quantity, but when I add formatCurrency I get NaN as the response.
This is how I did it in my template:
{{#if orders}}
{{#each orders}}
{{#each items}}
{{multiply quantity formatCurrency sellingPrice}}
{{/each}}
{{/each}}
{{/if}}
If I remove formatCurrency, the value is displayed without the decimal separator. Can I do this in any other way? Thanks!