Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I disable notification emails in Magento?

How do I disable a particular notification email, for example the welcome email when a user creates an account?

like image 226
Mage_user Avatar asked Jul 04 '11 12:07

Mage_user


1 Answers

There is no buit-in ability to disable particular email notifications in Magento. I suggest you to look at the Mage_Core_Model_Email_Template::sendTransactional method. You can overload this class and add check against allowed/disallowed email notifications (based on template name).

Update: you can use extension for disabling specific email notifications in Magento 1.

Also, there is Disable Emails extension for Magento 2.

like image 154
Roman Snitko Avatar answered Oct 19 '22 02:10

Roman Snitko