当新产品到达 magento 时自动向客户发出邮件提醒
我想在 magento 中添加此功能。当客户订阅新产品到达 magento 时,自动向客户发送邮件提醒,它不像 RSS,而只是仅包含产品提醒的邮件。是否有任何扩展或其他东西。
I want to add this feature in magento.Automatic mail alert to customers on new products arrival in magento upon on their subscription, its not like RSS but its just mail with the product alert alone. is there any extension or something else.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Magento 已经在产品价格更改或库存状态更改时提供电子邮件警报(请参阅
系统>配置>目录>产品警报
)。如果您查看了Mage_ProductAlert
中的代码,您应该能够扩展它以涵盖新产品的情况。我猜您想为客户提供订阅与某个类别相关的提醒的选项?因此,为productalert/category
添加一个新模型,并使用categoryAction()
扩展 AddController编辑 -
实际上,一个“低接触”选项是使用某些东西像 Feedburner 一样,采用现有的 RSS 类别提要并发送电子邮件。当您将提要插入 Feedburner 时,它会给您一个链接,用户可以单击该链接来订阅 RSS 的电子邮件版本。它将它们从您的站点中带走,但无需自定义编码即可满足要求。
Magento already provides email alerts for when a product changes price or changes stock status (see
System>Config>Catalog>Product Alerts
). If you have a look at the code inMage_ProductAlert
, you should be able to extend it to cover the case of a new product. I would guess that you'd want to offer customers the option to subscribe to alerts related to a category? So, add a new model forproductalert/category
and extend the AddController with acategoryAction()
EDIT --
Actually, one "low-touch" option would be to use something like Feedburner to take the existing RSS category feed and send emails. When you plug the feed into Feedburner, it will give you a link that users can click to subscribe to the email version of RSS. It takes them away from your site, but does achieve the requirement without custom coding.