Magento - 如何在交易电子邮件中插入产品图片
基本上我想将产品图片包含到订购产品时发送的新订单电子邮件中。
我从 email/order/items/order/default.phtml 开始使用此代码
<?php $_item = $this->getItem() ?>
<?php $_order = $this->getItem()->getOrder() ?>
如何使用此代码来获取图像?
Mage::helper('catalog/image')->init($_product, 'image')->resize(250)
感谢您的帮助:)
Basically I would like to include the product image to the New Order Email sent when ordering a product.
I started in email/order/items/order/default.phtml with this code
<?php $_item = $this->getItem() ?>
<?php $_order = $this->getItem()->getOrder() ?>
How do I use this code to fetch the image?
Mage::helper('catalog/image')->init($_product, 'image')->resize(250)
thanks for helping :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
因为我很早就找到了答案,所以我应该将其发布在这里以帮助其他有需要的人..:)
只需将此片段放在下面
注意:对于 gmail 用户,不要忘记启用显示图像..:)
希望这会有所帮助!
Since I found the answer early I should post it here to help other s in need.. :)
just put this snippet below
NOTE: For gmail users, don't forget to enable Display Image.. :)
Hope this helps!
这也行得通吗?
Does this also work?
在销售订单电子邮件中获取图像
请查看以下代码:
结束添加:
看起来不错!
Get Image in sale order email
Please view below code :
End add :
<img src="<?php echo $image_url; ?>" alt="" />
Good look !