Skip to content

Commit

Permalink
Merge pull request #16 from sendsmaily/feature/double-confirmation-em…
Browse files Browse the repository at this point in the history
…ails

Module option that enables/disables Magento stock newsletter emails
  • Loading branch information
tomkabel authored Jan 28, 2021
2 parents 7d45a99 + b7ea4e5 commit 6ff29c0
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
53 changes: 53 additions & 0 deletions app/code/community/Sendsmaily/Sync/Model/Subscriber.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?php

/**
* Sendsmaily Sync
* Export Magento newsletter subscribers to Sendsmaily
* Copyright (C) 2010 Sendsmaily
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

class Sendsmaily_Sync_Model_Subscriber extends Mage_Newsletter_Model_Subscriber
{
/**
* Skip sending out confirmation success email if Smaily opt-in enabled.
*
* @return Sendsmaily_Sync_Model_Subscriber|Mage_Newsletter_Model_Subscriber
*/
public function sendConfirmationSuccessEmail()
{
// Do not send.
if (Mage::helper('sync')->newsletterOptInEnabled() === true) {
return $this;
}
// Send subscription email via Magento.
return parent::sendConfirmationSuccessEmail();
}

/**
* Skip sending out unsubsciption email if Smaily opt-in enabled.
*
* @return Sendsmaily_Sync_Model_Subscriber|Mage_Newsletter_Model_Subscriber
*/
public function sendUnsubscriptionEmail()
{
// Do not send.
if (Mage::helper('sync')->newsletterOptInEnabled() === true) {
return $this;
}
// Send unsubscription email via Magento.
return parent::sendUnsubscriptionEmail();
}
}
5 changes: 5 additions & 0 deletions app/code/community/Sendsmaily/Sync/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@
<sync>
<class>Sendsmaily_Sync_Model</class>
</sync>
<newsletter>
<rewrite>
<subscriber>Sendsmaily_Sync_Model_Subscriber</subscriber>
</rewrite>
</newsletter>
</models>

<blocks>
Expand Down

0 comments on commit 6ff29c0

Please sign in to comment.