// Please edit the address and name below before activating this snippet.
// Change the From address.
add_filter( ‘wp_mail_from’, function ( $original_email_address ) {
return ‘[email protected]’;
} );

// Change the From name.
add_filter( ‘wp_mail_from_name’, function ( $original_email_from ) {
return ‘David Sumray’;
} );