I'm trying to get a conditional to work in a Magento email template, but for whatever reason, I can't get the 'if' to evaluate to true. In my template, I have:
Shipping Method:{{var order.shipping_method}}<br /><br />
{{if order.shipping_method=="wsastorepickup_wsastorepickup"}}
Run this<br /><br />
{{else}}
WTF, OVER?<br /><br />
{{/if}}
When Magento sends the email it has:
Shipping Method:wsastorepickup_wsastorepickup
WTF, OVER?
I've tried it with and without the 'var' in the conditional. What am I missing?
{{else}} Fail
{{/if}} – John Nov 06 '17 at 19:44