Disable Automatic Update Email Notification in WordPress

PHOTO EMBED

Thu Jul 01 2021 10:52:22 GMT+0000 (Coordinated Universal Time)

Saved by @Aadwork #wordpress

add_filter( 'auto_core_update_send_email', 'wpb_stop_auto_update_emails', 10, 4 );
 
function wpb_stop_update_emails( $send, $type, $core_update, $result ) {
if ( ! empty( $type ) && $type == 'success' ) {
return false;
}
return true;
}
content_copyCOPY

https://www.wpbeginner.com/wp-tutorials/how-to-disable-automatic-update-email-notification-in-wordpress/