Here’s a quick snippet to disable those (annoying) WooCommerce ads that show in the footer of the “New Order” email (which goes to admins): “Process your orders on the go. Get the app.“
The code is a little different from what you find online, let me know if it works!

PHP Snippet: Disable “Process your orders on the go. Get the app” Text Ad @ WooCommerce New Order Emails
/**
* @snippet Hide "Get the app" Ads @ WooCommerce Emails
* @how-to Get CustomizeWoo.com FREE
* @author Rodolfo Melogli
* @compatible WooCommerce 8
* @donate $9 https://businessbloomer.com/bloomer-armada/
*/
add_action( 'woocommerce_email_footer', 'bbloomer_remove_get_the_app_ad', 8 );
function bbloomer_remove_get_the_app_ad() {
$object = WC()->mailer();
remove_action( 'woocommerce_email_footer', array( $object, 'mobile_messaging' ), 9 );
}