基于http://www.webspeaks.in/2011/06/customize-new-order-email-template-in.html 和http://www.magentocommerce.com/boards/viewthread/43928/我创建了一个自定义电子邮件模板。
然而,几个小时后,我无法弄清楚如何让项目的自定义选项显示在电子邮件中。
在默认电子邮件代码(位于 \app\design\frontend\base\default\template\email\order\items\order\default.phtml)中有以下几行:
<?php if ($this->getItemOptions()): ?>
<dl style="margin:0; padding:0;">
<?php foreach ($this->getItemOptions() as $option): ?>
<dt><strong><em><small><?php echo $option['label'] ?></small></em></strong></dt>
<dd style="margin:0; padding:0 0 0 9px;">
<?php echo (isset($option['print_value']) ? $option['print_value'] : nl2br($this->escapeHtml($option['value']))) ?>
</dd>
<?php endforeach; ?>
</dl>
<?php endif; ?>
但是在我的 .phtml 中使用该代码不会显示任何内容。
这是我的代码:
<?php $_order = $this->getOrder() ?>
<?php $i=0; foreach ($_order->getAllItems() as $_item): ?><?php if($_item->getParentItem()) continue; else $i++; ?>
<?php echo $this->__('(') ?><?php echo $_item->getQtyOrdered()*1 ?><?php echo $this->__(') ') ?>
<strong><?php echo $this->htmlEscape($_item->getName()) ?></strong>
<?php echo $this->__('$') ?><?php echo number_format($_item->getRowTotal(), 2) ?>
<br />
<?php if ($this->getItemOptions()): ?>
<?php foreach ($this->getItemOptions() as $option): ?>
<strong><em><small><?php echo $option['label'] ?></small></em></strong>
<?php echo (isset($option['print_value']) ? $option['print_value'] : nl2br($this->escapeHtml($option['value']))) ?>
<?php endforeach; ?>
<?php endif; ?>
<?php echo $this->__("-------------------") ?>
<br />
<?php endforeach; ?>
<br />
<?php echo $this->__('Subtotal: $') ?><?php echo number_format($_order->getSubtotal(), 2) ?>
<br />
<?php echo $this->__('Tax: $') ?><?php echo number_format($_order->getTaxAmount(), 2) ?>
<br />
<strong><?php echo $this->__('Grand Total: $') ?><?php echo number_format($_order->getGrandTotal(), 2) ?></strong>
我尝试使用 $_item->getItemOptions()) 但没有帮助。
如果有人能提供正确的语法帮助,我将不胜感激(我希望这就是我所缺少的)。
谢谢你。