We followed the instructions on the AcyMailing help. The only problem is that in the preview/send the product image does not display correctly. {pictHTML} is replaced by
../images/hikashop/upload/thumbnails/250x250/caresseblanche.png
This is our code:
<div class="acymailing_content">
<h2><a href="{link}">{product_name} {finalPrice}</a></h2>
<table style="font-family:Arial, Helvetica, sans-serif;font-size:15px;display:block;" class="w200" cellspacing="0" cellpadding="0" border="0" align="left" width="200">
<tbody>
<tr style="line-height: 0px;">
<td class="w200" style="box-sizing: border-box; text-align: left;" width="200" valign="top">
{pictHTML}
</td>
</tr>
</tbody>
</table>
<table style="font-family:Arial, Helvetica, sans-serif;font-size:15px;display:block;" class="w320" cellspacing="0" cellpadding="0" border="0" align="right" width="320">
<tbody>
<tr>
<td class="w320" style="text-align: left;" width="320" valign="top">
<?php echo JText::_('HIKASHOP_PRODUCT_CODE'); ?>: {product_code}
{product_description}
</td>
</tr>
</tbody>
</table>
</div>
If we remove the custom template and go back to the original the product image shows correctly. Is there another tag for the image we should be using?