Пример #1
0
 public function sendUnsubscriptionEmail()
 {
     if (!Mage::getStoreConfig('remarketing/subscription/unsubscribe_email')) {
         return $this;
     }
     return parent::sendUnsubscriptionEmail();
 }
Пример #2
0
 public function sendUnsubscriptionEmail()
 {
     if (Mage::getStoreConfig('monkey/general/active', Mage::helper('monkey')->getThisStore()) == 1) {
         return $this;
     } else {
         return parent::sendUnsubscriptionEmail();
     }
 }
Пример #3
0
 /**
  * Send the Emails
  * 
  * @override
  * @todo    make this per store scope!
  * @return  MailUp_MailUpSync_Model_Subscriber
  */
 public function sendUnsubscriptionEmail()
 {
     if ($this->_getConfig()->isNewsletterNotificationDisabled()) {
         Mage::log("Newsletter Notification DISABLED: sendUnsubscriptionEmail");
         return $this;
     } else {
         return parent::sendUnsubscriptionEmail();
     }
 }
Пример #4
0
 public function sendUnsubscriptionEmail()
 {
     $store = Mage::helper('monkey')->getThisStore();
     if (Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_ACTIVE, $store) == 1 && !Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_CONFIRMATION_EMAIL, $store)) {
         return $this;
     } else {
         return parent::sendUnsubscriptionEmail();
     }
 }
Пример #5
0
 public function sendUnsubscriptionEmail()
 {
     if (Mage::helper('mailchimp')->checkSendUnsubscribe()) {
         return parent::sendUnsubscriptionEmail();
     } else {
         return $this;
     }
 }