How do I disable notification emails in Magento?

Viewed 36327

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

7 Answers

Magento 2.3:

Stores > Configuration > Advanced (at the bottom of the left vertical menu) > System

Then Mail sending settings > Disable Email Communications: Yes

Also, make sure you clear the cache from System > Cache management

There's another method, using the command line:

php bin/magento config:set system/smtp/disable 1
php bin/magento cache:flush
  • 1 = Disable email sending
  • 0 = Enable email sending

In Magento 2.4.2, you can easily navigate to stores > settings > configuration. Then under Sales > Sales emails, you should be able to disable the notifications that you require.

Related