在Magento的电子邮件模板中使用数组


Using Arrays in email template in Magento

我在Magento的sendNewOrderEmail函数中的模板参数中传递一个数组,如下所示:

$mailer->setTemplateParams(array(
                'order'        => $this,
                'billing'      => $this->getBillingAddress(),
                'payment_html' => $paymentBlockHtml,
                'sa'           => $someArray  // This is an array
            )
        );

但是我无法使用 magento 电子邮件模板中的变量sa。我尝试像{{var sa}}一样使用它,但是在电子邮件中,我得到的是Array而不是内容。如何在电子邮件中显示数组的内容。

你可以尝试sa.key 键是数组中的键。

或者您可以将此数组与基本参数数组合并