Change email address change notice from WordPress

To filter the content of the email sent when a user’s email is changed you want the email_change_email filter. Docs at https://developer.wordpress.org/reference/hooks/email_change_email/

Password change email is filtered by password_change_email, docs at https://developer.wordpress.org/reference/hooks/password_change_email/

You’ll be able to search to find examples of how to use these. You’ll need to add code to your functions.php or to a plugin to use them.

I found these by going to the WordPress Code Reference here: https://developer.wordpress.org/reference/ and searching for ’email’ and selecting only Hooks.