Disable emails from sending in WordPress

Disable emails from sending in WordPress on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter('pre_wp_mail', 'wp_disable_emails');
function wp_disable_emails() {
    return false;
}
1 Like

Hi @sebastian-moran,

Does it disable completely emails sending or just the one generated by WP?

Thanks

It would be for all emails being sent from the WordPress site.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.