You can call a short code in WordPress using the following:

<?php echo do_shortcode(‘[custom_email]’); ?>

I often prefer to place it inside a DIV:

<div id=”custom-block”>

       <?php echo do_shortcode(‘[custom_email]’); ?>

</div>