{% extends "email_snips/email_base.html" %} {# CONTEXT =[shipment_request]#} {% block content %}
{% if label %}

Please find a pre-paid {{ shipment_request.provider_name.title() }} label attached – it needs to be printed and attached to the box.

Please ensure any old postage labels are removed or thoroughly obscured as otherwise the parcel may be delivered back to you instead of coming home!

{% endif %} {% if shipment_request.shipment %} {% if shipment_request.shipment.direction == 'Outbound' %}

Collection is booked from our office on {{ shipment_request.shipment.shipping_date | ordinal_dt }} and should be delivered the following day to:
{{ shipment_request.shipment.recipient.address.business_name }}
{{ shipment_request.shipment.recipient.address.address_lines[0] }}

{% elif shipment.direction == 'Inbound' %}

Collection is booked from {{ shipment_request.shipment.sender.address.business_name }} {{ shipment_request.shipment.sender.address.address_lines[0] }} on {{ shipment_request.shipment.shipping_date | ordinal_dt }}.

We are unable to give precise timings, however you should receive notifications by SMS and email where provided.

{% if shipment_request.provider_name in ['ROYAL_MAIL'] %}

If for any reason the courier is missed you can drop the labelled box at any UK post office.

{% endif %} {% elif shipment_request.shipment.direction == 'Dropoff' %}

Please drop the labelled box at any UK post office.

{% endif %} {% endif %}
{% endblock content %}