Transactional Emails Sent by  WordPress

Complete list of all built-in email notifications sent by a WordPress, and how to disable them

Big list of every transactional email sent by a WordPress website, and how to stop the ones you don’t want.

Built-in WordPress Emails

Installation

User Registration & Authentication

Automatic Updates

Multisite Networks

Privacy

Commenting

Disable Specific Email Notifications

You can use the following PHP function to stop WordPress from sending specific email notifications.

/**
 * Filter Email Notifications
 *
 * @param bool|null $return short-circuit return value
 * @param array     $atts   array of the `wp_mail()` arguments
 */
function pre_wp_mail( $return, $atts ) {
  $subject = $atts['subject'];

  $globs = [
    'New Site Registration*',
    'New User Registration*',
  ];

  foreach ( $globs as $glob ) {
    if ( fnmatch( $glob, $subject ) ) {
      return false;
    }
  }

  return $return;
}
add_filter( 'pre_wp_mail', 'pre_wp_mail', 99, 2 );

This approach can also be used to filter email in other ways:

Be cautious while doing this, adjusting emails is advanced and if you’re not careful it could negatively affect core functionality that’s critical to your WordPress website.