The Right Way
You will need to add the following code in your theme’s functions.php file// Function to change email addressfunction wpb_sender_email( $original_email_address ) { return 'myname@example.com';}// Function to change sender namefunction wpb_sender_name( $original_email_from ) { return 'My Name';}// Hooking up our functions to WordPress filters add_filter( 'wp_mail_from', 'wpb_sender_email' );add_filter( 'wp_mail_from_name', 'wpb_sender_name' );