Change default ‘from’ email details

Add this snippet to functions.php to change the default wordpress@domain.com

add_filter('wp_mail_from', 'new_mail_from');
add_filter('wp_mail_from_name', 'new_mail_from_name');

function new_mail_from($old) {
return 'EMAIL@ADDRESS.com';
}
function new_mail_from_name($old) {
return 'FROM NAME';
}