开发者

Magento - how to add custom variables to new order E-mail?

开发者 https://www.devze.com 2023-04-03 13:45 出处:网络
I need to add custom v开发者_JS百科ariable to new order E-mail. This variables are custom customer attributes.

I need to add custom v开发者_JS百科ariable to new order E-mail.

This variables are custom customer attributes.

Thanks in advance!


Like any other variable that you are using you can ask variables from your object so if you do in php

<?php echo $customerObject->getMyCustomVariable();?>

you would do in template

{{var customerObject.getMyCustomVariable()}}

And as in php side you have to be sure that this attribute exists in your object and is included in collection

0

精彩评论

暂无评论...
验证码 换一张
取 消