本文整理汇总了PHP中Mage_Customer_Model_Customer::getSendemailStoreId方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Customer_Model_Customer::getSendemailStoreId方法的具体用法?PHP Mage_Customer_Model_Customer::getSendemailStoreId怎么用?PHP Mage_Customer_Model_Customer::getSendemailStoreId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Customer_Model_Customer
的用法示例。
在下文中一共展示了Mage_Customer_Model_Customer::getSendemailStoreId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getCustomerStoreId
/**
* Return the Store Id to read configuration settings for this customer from
*
* @param Mage_Customer_Model_Customer $customer
* @return int
*/
public function getCustomerStoreId(Mage_Customer_Model_Customer $customer)
{
/*
* Only set in Adminhtml UI
*/
if (!($storeId = $customer->getSendemailStoreId())) {
/*
* store_id might be zero if the account was created in the admin interface
*/
$storeId = $customer->getStoreId();
if (!$storeId && $customer->getWebsiteId()) {
/*
* Use the default store groups store of the customers website
*/
if ($store = Mage::app()->getWebsite($customer->getWebsiteId())->getDefaultStore()) {
$storeId = $store->getId();
}
}
// In case the website_id is not yet set on the customer, and the
// current store is a frontend store, use the current store ID
if (!$storeId && !Mage::app()->getStore()->isAdmin()) {
$storeId = Mage::app()->getStore()->getId();
}
}
return $storeId;
}
示例2: _sendWelcomeEmail
/**
* Send welcome email to customer
*
* @param Mage_Customer_Model_Customer $customer
* @param array $customerData
* @return Mage_Customer_Service_Customer
*/
protected function _sendWelcomeEmail($customer, array $customerData)
{
if ($customer->getWebsiteId() && ($this->_isSendEmail($customerData) || $this->_isAutogeneratePassword($customerData))) {
$isNewCustomer = !(bool) $customer->getOrigData($customer->getIdFieldName());
$storeId = $customer->getSendemailStoreId();
if ($isNewCustomer) {
$customer->sendNewAccountEmail('registered', '', $storeId);
} elseif (!$customer->getConfirmation()) {
// Confirm not confirmed customer
$customer->sendNewAccountEmail('confirmed', '', $storeId);
}
}
return $this;
}