我想,当一个新的客户已经注册电子邮件通知每次都发到我店里的联系人的电子邮件地址。
我不想购买任何种类的扩展,所以请帮我做这
提前致谢
我想,当一个新的客户已经注册电子邮件通知每次都发到我店里的联系人的电子邮件地址。
我不想购买任何种类的扩展,所以请帮我做这
提前致谢
最好的做法是使用Magento的事件系统。
应用程序的/ etc /模块/ Your_Module.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Your_Module>
<active>true</active>
<codePool>local</codePool>
</Your_Module>
</modules>
</config>
应用程序/核心/本地/你/模块的/ etc / config.xml中
<?xml version="1.0" encoding="UTF-8"?>
<config>
<global>
<models>
<your_module>
<class>Your_Module_Model</class>
</your_module>
</models>
</global>
<frontend>
<events>
<customer_save_after>
<observers>
<your_module>
<type>model</type>
<class>your_module/observer</class>
<method>customerSaveAfter</method>
</your_module>
</observers>
</customer_save_after>
</events>
</frontend>
</config>
应用程序/代码/地方/你/模块/型号/ Observer.php
<?php
class Your_Module_Model_Observer
{
public function customerSaveAfter(Varien_Event_Observer $o)
{
//Array of customer data
$customerData = $o->getCustomer()->getData();
//email address from System > Configuration > Contacts
$contactEmail = Mage::getStoreConfig('contacts/email/recipient_email');
//Mail sending logic here.
/*
EDIT: AlphaCentauri reminded me - Forgot to mention that
you will want to test that the object is new. I **think**
that you can do something like:
*/
if (!$o->getCustomer()->getOrigData()) {
//customer is new, otherwise it's an edit
}
}
}
编辑:请注意,在代码编辑-为南门二所指出的, customer_save_after
事件被触发两个插入和更新。 该_origData
条件逻辑应该让你结合自己的邮件逻辑。 _origData将是null
。
它可以完美地与Magento的事件/观测系统来完成。 首先,注册您的模块。
应用程序的/ etc /模块/ Namespace_Modulename.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Namespace_Modulename>
<active>true</active>
<codePool>local</codePool>
</Namespace_Modulename>
</modules>
</config>
不是为它编写一个配置文件。
应用程序/代码/本地/命名空间/模块名在/ etc / config.xml中
<?xml version="1.0"?>
<config>
<modules>
<Namespace_Modulename>
<version>0.0.1</version>
</Namespace_Modulename>
</modules>
<frontend>
<events>
<customer_register_success>
<observers>
<unic_observer_name>
<type>model</type>
<class>unic_class_group_name/observer</class>
<method>customerRegisterSuccess</method>
</unic_observer_name>
</observers>
</customer_register_success>
</events>
<helpers>
<unic_class_group_name>
<class>Namespace_Modulename_Helper</class>
</unic_class_group_name>
</helpers>
</frontend>
<global>
<models>
<unic_class_group_name>
<class>Namespace_Modulename_Model</class>
</unic_class_group_name>
</models>
<template>
<email>
<notify_new_customer module="Namespace_Modulename">
<label>Template to notify administrator that new customer is registered</label>
<file>notify_new_customer.html</file>
<type>html</type>
</notify_new_customer>
</email>
</template>
</global>
</config>
这里有几件事情发生了:
customer_register_success
(它在335行中派出Mage_Customer_AccountController
)在frontend/events
节点。 这比使用更好的customer_save_after
,因为最后一个必火,每次客户保存,不仅当他登记; global/template/email
节点。 为了让我们能够发送自定义邮件吧。 接下来创建一个电子邮件模板(文件)。
应用程序/区域/ EN_US /模板/ notify_new_customer.html
Congratulations, a new customer has been registered:<br />
Name: {{var name}}<br />
Email: {{var email}}<br />
...<br />
后定义的观察者方法。
应用程序/代码/本地/命名空间/模块名/型号/ Observer.php
class Namespace_Modulename_Model_Observer { public function customerRegisterSuccess(Varien_Event_Observer $observer) { $emailTemplate = Mage::getModel('core/email_template') ->loadDefault('notify_new_customer'); $emailTemplate ->setSenderName(Mage::getStoreConfig('trans_email/ident_support/name')) ->setSenderEmail(Mage::getStoreConfig('trans_email/ident_support/email')) ->setTemplateSubject('New customer registered'); $result = $emailTemplate->send(Mage::getStoreConfig('trans_email/ident_general/email'),(Mage::getStoreConfig('trans_email/ident_general/name'), $observer->getCustomer()->getData()); } }
编辑:作为@benmarks指出,如果顾客在结帐时注册了该解决方案将无法工作。 这个问题的解决方案描述在这里 。 但是,我认为,这是更好地使用_origData
功能@benmarks建议。 所以,用他的回答为导向,以达到你所需要的。
相关链接:
作为一种替代的基于事件的方法,你可以运行一个单独的API基于脚本他们获取新的(或更新)客户和通过电子邮件发送给你,这可能会或可能不希望让你得到一次每一天列表,而比对每一个客户也电子邮件。
优点:
下面是我最近使用过的一个例子,这几乎正是你想要的,这就是为什么这引起了我的眼睛。 代码可以在这里找到 。
$client =
new SoapClient('http://www.yourstore.com/magento/api/soap?wsdl');
$session = $client->login('TEST_USER', 'TEST_PASSWORD');
$since = date("Y-m-d", strtotime('-1 day'));
// use created_at for only new customers
$filters = array('updated_at' => array('from' => $since));
$result = $client->call($session, 'customer.list', array($filters));
$email = "New customers since: $since\n";
foreach ($result as $customer) {
$email .= $customer["firstname"] ." ".
$customer["lastname"] . ", " .
$customer["email"] . "\n";
}
mail("customer-manager@yourstore.com", "Customer report for: $since", $email);
你可以扩展Mage/Customer/Resource/Customer.php
-保护功能_beforeSave(Varien_Object $customer)
if ($result) {
throw Mage::exception('Mage_Customer', Mage::helper('customer')->__('This customer email already exists'), Mage_Customer_Model_Customer::EXCEPTION_EMAIL_EXISTS);
} else {
// SEND EMAIL - Use a custom template
}
你可以试试这个扩展,让每一个新客户注册的通知电子邮件,其中包括一个可定制的电子邮件模板。 http://www.magentocommerce.com/magento-connect/customer-registration-notification.html
你可以试试这个扩展,让每一个新客户注册的通知电子邮件,其中包括一个可定制的电子邮件模板。 http://www.magentocommerce.com/magento-connect/customer-registration-notification.html
这是也发送新客户的电子邮件管理员代码
覆盖文件
\app\code\core\Mage\Customer\Model\Customer.php
当地
\app\code\local\Mage\Customer\Model\Customer.php
下面替换功能
protected function _sendEmailTemplate($template, $sender, $templateParams = array(), $storeId = null)
{
/** @var $mailer Mage_Core_Model_Email_Template_Mailer */
$mailer = Mage::getModel('core/email_template_mailer');
$emailInfo = Mage::getModel('core/email_info');
$emailInfo->addTo($this->getEmail(), $this->getName());
$mailer->addEmailInfo($emailInfo);
// Set all required params and send emails
$mailer->setSender(Mage::getStoreConfig($sender, $storeId));
$mailer->setStoreId($storeId);
$mailer->setTemplateId(Mage::getStoreConfig($template, $storeId));
$mailer->setTemplateParams($templateParams);
$mailer->send();
return $this;
}
至
protected function _sendEmailTemplate($template, $sender, $templateParams = array(), $storeId = null)
{
/** @var $mailer Mage_Core_Model_Email_Template_Mailer */
$mailer = Mage::getModel('core/email_template_mailer');
$emailInfo = Mage::getModel('core/email_info');
$emailInfo->addTo($this->getEmail(), $this->getName());
if($template="customer/create_account/email_template"){
$emailInfo->addBcc(Mage::getStoreConfig('trans_email/ident_general/email'), $this->getName());
//Add email address in Bcc you want also to send
}
$mailer->addEmailInfo($emailInfo);
// Set all required params and send emails
$mailer->setSender(Mage::getStoreConfig($sender, $storeId));
$mailer->setStoreId($storeId);
$mailer->setTemplateId(Mage::getStoreConfig($template, $storeId));
$mailer->setTemplateParams($templateParams);
$mailer->send();
return $this;
}