Changing the WordPress default password recovery email’s sender name and email address
To change the WordPress default password recovery email’s sender name and email address, add the following to your active theme’s functions.php file.
add_filter( 'wp_mail_from', 'wpse_new_mail_from' );
function wpse_new_mail_from( $old ) {
return 'your email'; // Your email address goes here
}
add_filter('wp_mail_from_name', 'wpse_new_mail_from_name');
function wpse_new_mail_from_name( $old ) {
return 'your company name'; // Your company name goes here
}