Magento:获取新闻通讯/订阅者模块以将电子邮件和名称发送到数据库
目前,它仅抓取电子邮件并将其传送到数据库。我添加了该名称的 html,但我需要编辑一些其他文件才能获取信息。我已经进行了大量的谷歌搜索,但没有找到任何答案。
Currently, it only grabs the email and delivers it to the database. I added the html for the name, but I needed to edit some other files for it to grab the info. I've done a ton of googling but I havent found any answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要开发自己的扩展。
首先,您需要在数据库中的某个位置放置名称。您需要更改 newsletter_subscriber 表或创建您自己的表。无论哪种情况,您都需要一个安装脚本。
然后您需要重写 Mage_Newsletter_SubsscriberController newAction 来存储您想要的信息。
要完成完整的工作,您需要更新管理界面 (Adminhtml/Newsletter/Subscriber/Grid.php) 和一些模型文件。
You'll need to develop your own extension.
First, you'll need somewhere in the database to put the name. You'll either need to alter the newsletter_subscriber table or create your own table. In either case, you need an install script.
Then you'll need to override the Mage_Newsletter_SubsscriberController newAction to store the information you want.
To do a complete job, you'll want to update the Admin interface (Adminhtml/Newsletter/Subscriber/Grid.php) and a few model files.