トランザクションメールまたはニュースレターでいくつかのチェックを調査し、http://merch.docs.magento.com/ce/user_guide/store-operations/email-transactional.htmlを参照しています
以下のコードを見つけます。
私の質問:このDEPENDまたはIFを使用して、変数の有無を確認できますか?何かのようなもの
{{if customer.getFirstname()}}
{{var customer.firstname}}
{{else}
{{var customer.name}}
{{/if}}
リンクからの例
Depend Condition
{{depend order.getIsNotVirtual()}}
{{/depend}}
{{depend salable}}
{{/depend}}
- If Condition
{{if order.getIsNotVirtual()}}
{{else}}
{{/if}}
(else is optional)