Magento Store - Don't Send Success Newsletter Email
6 answers
I have created a module that solves this problem and can be enabled and disabled from the backend.
Module configuration screenshot
+6
a source to share
The file you want to override is Mage_Newsletter_Model_Subscriber
. Create a class that overrides this model and then replace the two methods as follows:
<?php
class Somepackage_Somemodule_Models_Subscriber extends Mage_Newsletter_Model_Subscriber {
public function sendConfirmationSuccessEmail() {
return $this;
}
public function sendUnsubscriptionEmail() {
return $this;
}
}
This will disable the subscription (and unsubscribe) emails for customers.
Hope it helps!
Thanks Joe
+8
a source to share
To disable any email notification in Magento, you can use the free Magento 1 extension .
In addition, there is a similar extension for Magento 2.
+2
a source to share