Add shipping address to Woocommerce order emails [closed]

To call the shipping address:

<p><?php echo $order->get_formatted_shipping_address(); ?></p>

And this before for a title:

 <h3><?php _e( 'Shipping address', 'woocommerce' ); ?></h3>

This can also be used:
<?php echo $order->get_shipping_address(); ?>