在 Magento 中以电子邮件形式发送表单数据

发布于 2024-09-16 04:52:50 字数 223 浏览 5 评论 0原文

如何将表单数据发送到 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 技术交流群。

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

发布评论

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

评论(2

别忘他 2024-09-23 04:52:50

我不确定你需要什么。这是自定义静态公式的示例。您所需要的只是创建一个 phtml 模板并将其添加到 cms 页面中。

在 RTE 中:

{{block type="core/template" name="myformular" template="contacts/myformular.phtml"}} 

或者在 phtml 文件内的 xml 布局中

<reference name="content">
    <block type="core/template" name="myformular" template="contacts/myformular.phtml" />
</reference>

,您可以使用纯 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:

{{block type="core/template" name="myformular" template="contacts/myformular.phtml"}} 

or in xml layout

<reference name="content">
    <block type="core/template" name="myformular" template="contacts/myformular.phtml" />
</reference>

inside that phtml file you can design your mail with plain php
How to send email with php

鲜肉鲜肉永远不皱 2024-09-23 04:52:50
// Send mail:
$mail = Mage::getModel('core/email')
    ->setToName('Prajapati jignesh')
    ->setToEmail('[email protected]')
    ->setBody('Message body')
    ->setSubject('Message subject')
    ->setType('text'); // or html
try{
    $mail->send();
}
catch(Exception $error)
{
    // Could not send email
}
// Send mail:
$mail = Mage::getModel('core/email')
    ->setToName('Prajapati jignesh')
    ->setToEmail('[email protected]')
    ->setBody('Message body')
    ->setSubject('Message subject')
    ->setType('text'); // or html
try{
    $mail->send();
}
catch(Exception $error)
{
    // Could not send email
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文