{% if getSiteLogo() %} Company Logo {% endif %}

{{ isAdmin ? 'New Subscription Purchased' : 'Thank you for your order' }}

Hello {{ isAdmin ? "Admin" : customerName }},

{{ isAdmin ? customerName ~ ' has purchased a new subscription.' : 'Thank you for your order! We have received your order and will process it immediately.' }}

{% if isAdmin %}

(Order number #{{ orderId }}) ( {{ purchaseDate|date('F j, Y') }} )

{% set durationPrice = productPrice * duration %}
Product Number Price
{{ productName }} - {{ duration }} month(s) {{ duration }}€ {{ durationPrice|number_format(2, ',', '.') }}
Discount: - € {{ discount }}
Subtotal: € {{ discountedPrice|number_format(2, ',', '.') }}
Tax: + € {{ tax|number_format(2, ',', '.') }}
Payment method: {{ paymentMethod|upper }}
In total: € {{ payableAmount|number_format(2, ',', '.') }}

Subscription Information

ID Start Date End Date Recurring Total
#{{ subscriptionId }} {{ purchaseDate|date('F j, Y') }} {{ endDate|date('F j, Y') }} € {{ payableAmount|number_format(2, ',', '.') }}

Next payment: {{ nextPaymentDate ? nextPaymentDate|date('F j, Y') : "N/A" }}

{% if affiliateFullName %}

Affiliate Information

{% if isRefLink %} {% endif %}
Affiliate {{ affiliateFullName }}
Commission earned € {{ affiliateCommission|number_format(2, ',', '.') }}
Conversion medium Link
{% endif %}

Billing Address

{{ customerName }}
{{ addressLine1 }}
{{ city }}, {{ state }} {{ postalCode }}
{{ country }}
{{ mobileNumber }}
{{ customerEmail }}

{% endif %} {% if not isAdmin %}

Order details

Product {{ productName }}
Subscription Number #{{ subscriptionId }}
Purchase Date {{ purchaseDate|date('F j, Y') }}
Duration {{ duration }} month(s)
Payment Method {{ paymentMethod|upper }}
Tax € {{ tax|number_format(2, ',', '.') }}
Price € {{ payableAmount|number_format(2, ',', '.') }}
Next Payment {{ nextPaymentDate ? nextPaymentDate|date('F j, Y') : "N/A" }}

Billing Address

{{ customerName }}
{{ addressLine1 }}
{{ city }}, {{ state }} {{ postalCode }}
{{ country }}
{{ mobileNumber }}
{{ customerEmail }}

{% endif %}

Thank you for using our service!