在 Magento 中以电子邮件形式发送表单数据
如何将表单数据发送到 Magento 中的预设电子邮件地址(例如联系表单的工作原理)?
编辑:我正在尝试在静态块中创建一个表单,提交后,将表单数据发送到电子邮件地址([电子邮件受保护])
How can I send form data to a preset email address in Magento (like how the contact form works) ?
EDIT : What I'm trying is to have a form in a static block which when submitted, sends the form data to an email address ([email protected])
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定你需要什么。这是自定义静态公式的示例。您所需要的只是创建一个 phtml 模板并将其添加到 cms 页面中。
在 RTE 中:
或者在 phtml 文件内的 xml 布局中
,您可以使用纯 php 设计邮件
如何使用 php 发送电子邮件
im not sure what you need. Heres an example for a custom static formular. All you need is to create a phtml template and this add into a cms page.
in RTE:
or in xml layout
inside that phtml file you can design your mail with plain php
How to send email with php