This might be helpful. I found it while researching this problem.
I tried it and it worked for me using WP Better Emails + WooCommerce + Mandrill.
To completely remove the WooCommerce email headers and footers, leaving WP Better Emails to do them, add this to your theme’s functions.php file:
//remove WooCommerce headers and footers
function remove_woo_header_footer($object){
remove_action(‘woocommerce_email_header’, array( $object, ’email_header’ ));
remove_action(‘woocommerce_email_footer’, array( $object, ’email_footer’ ));
}
add_action( ‘woocommerce_email’, ‘remove_woo_header_footer’ );