Hi All! Has anyone successfully set up a backorder...
# administration
t
Hi All! Has anyone successfully set up a backorder email that's sent to a customer who placed an order containing an out of stock item? My goal is to include the item(s) that are back ordered in the email body. I can do this via a saved search but I don't like how the results are added below the email body - I'd like to insert the results in the middle of the body.
n
yep, you can do that. in the email template you would include html like
<#list transaction.item as item>
<tbody>
<tr>
<td style="width: 124px;"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">${item.quantity}</span></span></td>
<td style="width: 846px;"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">${item.description}</span></span></td>
</tr>
</tbody>
</#list>
you would add filtering so that only items not on bo are included.