当新产品到达 magento 时自动向客户发出邮件提醒

发布于 2024-09-25 11:06:03 字数 94 浏览 3 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一瞬间的火花 2024-10-02 11:06:03

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 in Mage_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 for productalert/category and extend the AddController with a categoryAction()

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文