9

Magento 中的时事通讯订阅模块默认只有一个字段(电子邮件)。在我向表单添加一个额外的字段(比如国家)后,我怎样才能让表单数据显示在 Magento 后端并作为电子邮件发送给预设的收件人?谢谢。

4

4 回答 4

33

如果您想为 Magento 通讯订阅者添加一些自定义字段(例如subscriber_name),您应该执行以下操作:

  • newsletter_subscriber为表格添加新列
  • 将文本输入添加到时事通讯模板
  • 为newsletter_subscriber_save_before事件创建观察者

在观察者中,您可以从请求中获取自定义字段的值并将其分配给订阅者的对象:

public function newsletterSubscriberSave(Varien_Event_Observer $observer)
{
    $subscriber = $observer->getEvent()->getSubscriber();
    $name = Mage::app()->getRequest()->getParam('subscriber_name');

    $subscriber->setSubscriberName($name);

    return $this;
}


更新

这是解释如何添加 Country 字段的详细文章 另外,我创建了一个免费模块,它可以在GitHub 上找到

于 2011-06-21T13:05:30.827 回答
23

要完成这项工作,您需要注意一些事项:

  1. 将数据的新列添加到相应的数据库表中
  2. 确保 Magento 将您的新字段保存到数据库中
  3. 在管理后台显示数据
  4. 订阅新的时事通讯时记录数据

以下是您可以执行所有这些操作的方法:

广告。1)

使用 phpMyAdmin、MySQL 命令行或任何您喜欢的数据库操作方法,将新列“国家”添加到 newsletter_subscriber 表中,例如 varchar(100)。

广告。2)

Magento 将自动让您通过 Mage_Newsletter_Model_Subscriber 对象上的getCountry()setCountry()方法访问新字段。它唯一不会做的就是在使用系统中某处的代码更改字段后将其保存回数据库。要保存它,您需要修改 Mage_Newsletter_Model_Mysql4_Subscriber (app/code/core/Mage/Newsletter/Model/Mysql4/Subscriber.php) 中的 _prepareSave(Mage_Newsletter_Model_Subscriber $subscriber) 函数。请务必先制作文件的本地副本,不要修改核心文件。这是您需要添加的内容:

protected function _prepareSave(Mage_Newsletter_Model_Subscriber $subscriber)
{
    $data = array();
    $data['customer_id'] = $subscriber->getCustomerId();
    $data['store_id'] = $subscriber->getStoreId()?$subscriber->getStoreId():0;
    $data['subscriber_status'] = $subscriber->getStatus();
    $data['subscriber_email']  = $subscriber->getEmail();
    $data['subscriber_confirm_code'] = $subscriber->getCode();

    //ADD A NEW FIELD START

    //note that the string index for the $data array
    //must match the name of the column created in step 1
    $data['country'] = $subscriber->getCountry();

    //ADD A NEW FIELD END
    (...)
}

广告。3)

您将需要修改(本地副本)文件 app/code/core/Mage/Adminhtml/Block/Newsletter/Subscriber/Grid.php。您正在寻找的方法称为 _prepareColumns()。在那里你会看到一系列对 $this->addColumn() 的调用。您需要使用以下代码为“国家/地区”字段添加相应的调用:

$this->addColumn('country', array(
    'header'    => Mage::helper('newsletter')->__('Country'),
    //the index must match the name of the column created in step 1
    'index'     => 'country',
    'default'   =>    '----'
));

如果您希望该字段出现在网格的末尾(作为最后一列),请将其添加为最后一次调用,否则,请将其挤在您希望它在管理员中结束的位置之间的现有调用之间。

广告。4)

这是我在定制 Magento 时事通讯时不需要做的部分,所以它主要是理论上的。订阅发生在位于 app/code/core/Mage/Newsletter/controllers/SubscriberController.php 的控制器中。这是带有我提议的更改的 newAction 方法的代码:

public function newAction()
{
    if ($this->getRequest()->isPost() && $this->getRequest()->getPost('email')) {
        $session   = Mage::getSingleton('core/session');
        $email     = (string) $this->getRequest()->getPost('email');

        try {
            if (!Zend_Validate::is($email, 'EmailAddress')) {
                Mage::throwException($this->__('Please enter a valid email address'));
            }

            $status = Mage::getModel('newsletter/subscriber')->subscribe($email);
            if ($status == Mage_Newsletter_Model_Subscriber::STATUS_NOT_ACTIVE) {
                $session->addSuccess($this->__('Confirmation request has been sent'));
            }
            else {
                $session->addSuccess($this->__('Thank you for your subscription'));
            }
                
                //ADD COUNTRY INFO START
                
                //at this point we may safly assume that subscription record was created
                //let's retrieve this record and add the additional data to it
                $subscriber = Mage::getModel('newsletter/subscriber')->loadByEmail($email);
                
                //assuming that the input's id is "country"
                $subscriber->setCountry((string) $this->getRequest()->getPost('country'));
                
                //don't forget to save the subscriber!
                $subscriber->save();
                
                //ADD COUNTRY INFO END
        }
        catch (Mage_Core_Exception $e) {
            $session->addException($e, $this->__('There was a problem with the subscription: %s', $e->getMessage()));
        }
        catch (Exception $e) {
            $session->addException($e, $this->__('There was a problem with the subscription'));
        }
    }
    $this->_redirectReferer();
}

完成上述步骤应该可以解决大部分问题。让我知道最后一部分是如何工作的,因为我没有机会测试它。

一旦你在订阅者对象中有你的附加字段,你就可以用它做任何你想做的事情。我没有真正明白你的意思

作为电子邮件发送给预设的收件人

如果你能解释一下,我也会尽力帮助你完成这部分。

编辑 - 当有人订阅时如何发送邮件

只需在将国家/地区添加到订阅者对象的部分之后将以下代码添加到控制器。

$mail = new Zend_Mail();
$mail->setBodyHtml("New subscriber: $email <br /><br />Country: ".$this->getRequest()->getPost('country'));
$mail->setFrom("youremail@email.com")
->addTo("admin@mysite.com")
->setSubject("Your Subject here");
$mail->send(); 
于 2010-07-03T22:11:37.960 回答
0

除了已接受的答案之外,如果您要添加日期、日期时间或时间戳类型的列,您还可以更轻松地解决这个问题。

就我而言,我想在我的网格中添加一个“订阅日期”。为此,我编写了升级脚本,列类型为 TIMESTAMP,默认值为 CURRENT_TIMESTAMP。这样,当添加行时,将记录当前日期/时间。

然后,您所要做的就是添加您的块自定义。我建议通过扩展 Magento 的网格块而不是进行本地代码池覆盖来做到这一点。这样,您只需要覆盖 _prepareColumns();

于 2012-12-10T22:35:20.193 回答
0

旧线程,但如果有人有同样的问题,有一个免费扩展,添加性别、名字和姓氏字段,并使其在后端网格中可用,以便通过 xml/csv 导出:http: //www.magentocommerce.com/ magento-connect/extended-newsletter-subscription-for-guests.html

也许您可以扩展代码以满足您的需求。

于 2014-01-19T16:42:27.887 回答