Вы можете разместить этот код в файле functions.php вашей темы:
function action_woocommerce_email_before_order_table( $order, $int, $int ) {
if($order->get_status() == 'completed') {
_e("Your custom text goes here");
}
};
add_action( 'woocommerce_email_before_order_table', 'action_woocommerce_email_before_order_table', 10, 3 );
Он также может быть переведен как строка.