woocommerce: Customize email with item total count

You could call either of the following functions in your email template:

<?php echo WC()->cart->get_cart_contents_count(); ?>

OR

<?php echo(count(WC()->cart->get_cart())); ?>