-2

我有 magento commerce,我正在用 html 创建一个自动电子邮件,当有人注册时会发送该电子邮件(在 Dreamweaver 中)。

在 HTML 代码中,我有一个按钮,用于订阅我们的时事通讯。我必须链接到这张图片的代码是什么,所以如果有人点击它,他将订阅时事通讯。

提前致谢, 弗兰克

4

1 回答 1

1

电话转至:

http://yourdomain.de/index.php/newsletter/subscriber/new/  

但正如您在 Mage_Newsletter_SubscriberController newAction 中看到的那样,表单数据是通过邮寄发送的,您可以在其中找到以下代码行。

  $this->getRequest()->isPost() && $this->getRequest()->getPost('email')

因此,您需要将表单字段命名为“电子邮件”

祝你好运!

编辑:

只需使用这样的东西:

<form action="http://yourdomain.com/index.php/newsletter/subscriber/new/" method="POST" id="newsletter-validate-detail">
<input type="text" class="input-text required-entry validate-email" name="email" id="newsletter">
<input type="image" src="path to image" name="submit" />
</form>
于 2013-06-28T16:37:00.957 回答