hotel_commerce/mails/en/download-product.tpl
2023-06-26 13:09:26 +05:30

13 lines
307 B
Smarty

<ul>
{foreach from=$virtualProducts item=product}
<li>
<a href="{$product.link|escape:'html'}">{$product.name}</a>
{if isset($product.deadline)}
expires on {$product.deadline}
{/if}
{if isset($product.downloadable)}
downloadable {$product.downloadable} time(s)
{/if}
</li>
{/foreach}
</ul>