Set the thumbnail product background color to white in email notifications in WooCommerce on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter( 'woocommerce_email_styles', 'custom_wc_email_styles', 20 );
function custom_wc_email_styles( $css ) {
$css .= '.order_item > td > img { background-color: #ffffff; }';
return $css;
}