Showing tracking number in 'Order Shipped'-mail

Hi,

I’ve added the tracking number to my orders. They are stored on order as Tracking URL.

Is this how I display it in the email template?


Subject: Your order {{{ order.invoiceNumber }}} is on its way!

{{! You have access to the whole order information using the `order` object. Might be helpful to show some contextual information }} Hey {{ order.billingAddress.fullName }},

    <p>
        We're pleased to inform you that your order (<b>{{ order.invoiceNumber }}</b>) on <b>{{ settings.businessAddress.company }}</b> has shipped!
    </p>
    {{ #if order.trackingUrl }}
    <p>
        Tracking URL: {{ order.trackingUrl }}
    </p>
    {{ /if }}
    <p>
        Thanks!
    </p>
</div>