{% extends 'cubane/enquiry/mail/base.html' %} {% load cms_tags %} {% block email_reason %} You're recieving this email because you bought products form our website. We're sending this email to customers in order to notify them about order details. You may receive a new email for every change regarding your order. {% endblock %} {% block content %} {% if preview %}Dear Customer's Name
{% endif %} {% if preview %}
Text will be inserted here based on the email's subject.
{% endif %} {% if password_reset %} Dear {{customer.full_name}}

A new password has been requested for your account.
Your new account details are:

Username: {% if preview %}Customer's Username{% endif %} {{ customer.email }}
Password: {% if preview %}New Password{% endif %} {{ password_plaintext }}

Please use the following link to log into your account:

{{ login_url }}
{% endif %} {% if order_cancelled %} Dear {{order.full_name}},

Your order {{ order.order_id }} on {{ settings.name }} has been cancelled.

{% if order.cancel_msg %}The following reason was given: {{ order.cancel_msg }}
{% endif %}
{% include 'cubane/ishop/elements/order/order_email.html' %}
{% endif %} {% if order_settled %} Dear {{order.full_name}},

Your payment {{ order.order_id }} on {{ settings.name }} has been processed, which means that your order is currently being completed and being prepared for shipping.

Please check the status page (link provided below).
Your credit card has been charged with {{ CURRENCY }}{{ order.total }}.

{% include 'cubane/ishop/elements/order/order_email.html' %}
{% endif %} {% if order_status %} Dear {{order.full_name}},

Your order {{ order.order_id }} has been updated.


Status: {{ order.get_status_display }}


{% include 'cubane/ishop/elements/order/order_email.html' %}
For more information, please click on the following link or copy and paste
the link into the address bar of your browser:

{{ order_url }}
{% endif %} {% if order_approved %} Dear {{order.full_name}},

Your order {{ order.order_id }} on {{ settings.name }} has been approved

Your selected payment method has been charged and your order will be processed.

{% include 'cubane/ishop/elements/order/order_email.html' %}
{% endif %} {% if order_rejected %} Dear {{order.full_name}},

Your order {{ order.order_id }} on {{ settings.name }} has been rejected.

{% if order.reject_msg %}The following reason was given: {{ order.reject_msg }}
{% endif %}
{% include 'cubane/ishop/elements/order/order_email.html' %}
{% endif %} {% if order_client %} Dear {{settings.name}},

The order {{ order.order_id }} on {{ settings.name }} has been placed.



Total: {{ CURRENCY }}{% if order.partial %}{{ order.multipart_total }}{% else %}{{ order.total }}{% endif %}
Name: {{ order.full_name }}
Email: {{ order.email }}


For more information, please click on the following link or copy and paste
the link into the address bar of your browser:

{{ backend_order_url }}

{% include 'cubane/ishop/elements/order/order_email.html' %}
{% endif %} {% if order_customer %} Dear {{order.full_name}},

Your order {{ order.order_id }} on {{ settings.name }} has been placed.

{% if order.basket.is_collection_only %} Due to one or more items in the order being Click and Collect only, please wait until you receive a confirmation email to come and collect your order from store.

{% elif order.basket.is_click_and_collect %} Your order is for collection, please wait until you receive a confirmation email to come and collect your order from store.

{% endif %} {% if order.basket.has_pre_order_item and not order.basket.is_click_and_collect %} Due to an item in the basket being Pre-order only, the delivery may take longer than expected.

{% endif %} For more information, please click on the following link or copy and paste
the link into the address bar of your browser:

{{ order_url }}

{% include 'cubane/ishop/elements/order/order_email.html' %}
{% endif %}
{% slot 'content' %} {% endblock %}