abandon cart campaign

This commit is contained in:
O K
2025-09-04 14:57:28 +03:00
parent ee75ace7cd
commit b834851889
3 changed files with 207 additions and 14 deletions

View File

@@ -0,0 +1,3 @@
<script type="application/ld+json">
{$json_ld_data|@json_encode nofilter}
</script>

View File

@@ -0,0 +1,12 @@
<table width="100%" cellpadding="10" cellspacing="0" style="border-collapse: collapse; margin-top: 20px;">
{foreach from=$products item=product}
<tr style="border-bottom: 1px solid #eee;">
<td width="80"><img src="https://{$product.image_url}" alt="{$product.product_name}" width="70"
style="border: 1px solid #ddd;"></td>
<td><a href="{$product.product_url}">{$product.product_name}</a><br><small>{$product.product_quantity} x
{$product.unit_price_tax_incl} {$product.currency_iso_code}</small></td>
<td align="right">{$product.total_price_tax_incl} {$product.currency_iso_code}</td>
</tr>
{/foreach}
</table>