We have a product “Signature On Delivery” that is not a product in our Bigcommerce catalog. It gets added during checkout via the API. Is there a way to exclude products in the review email flow with specific name? eg.
Something like this:
{% if not 'Signature on Delivery' in item.product.name %}
<div style="text-align:left;"><h3>{{ item.product.name }}</h3>
<p><a href="{{ organization.url|trim_slash }}{{ item.product.url }}#product-reviews">Review this item</a></p></div>
{% endif %}