first check out on the link I have mention change the “example.com” with you websites url
login
https://example.com/wp-admin/admin.php?page=wc-settings&tab=email
In this page you will see
“Email Sender Options”
You can change an it should work
If it not you can try the below filter an you work will be done
It not related to woocommerce setting
All the email you are sending will get the same Sender name and sender Email address you can used this two filter to change that name an email respectively
function harimay_wp_mail_from_name_callback( $email ){
return ‘Test’; // new email name from sender.
}
add_filter( ‘wp_mail_from_name’, ‘harimay_wp_mail_from_name_callback’, 10001 );
function harimay_wp_mail_from_callback ($email ){
return ‘[email protected]’; // new email address from sender.
}
add_filter( ‘wp_mail_from’, ‘harimay_wp_mail_from_callback’, 10001 );