Untitled
[{{ shop.name }}] Paragon do płatności za zamówienie {{ name }}user_2260380
plain_text
a year ago
7.0 kB
0
Indexable
Never
<!DOCTYPE html> <html lang="pl"> <head> <title>{{ email_title }}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css"> <style> .button__cell { background: {{ shop.email_accent_color }}; } a, a:hover, a:active, a:visited { color: {{ shop.email_accent_color }}; } </style> </head> <body> <table class="body"> <tr> <td> <table class="header row"> <tr> <td class="header__cell"> <center> <table class="container"> <tr> <td> <table class="row"> <tr> <td class="shop-name__cell"> {%- if shop.email_logo_url %} <img src="{{shop.email_logo_url}}" alt="{{ shop.name }}" width="{{ shop.email_logo_width }}"> {%- else %} <h1 class="shop-name__text"> <a href="{{shop.url}}">{{ shop.name }}</a> </h1> {%- endif %} </td> <td> <tr> <td class="order-number__cell"> <span class="order-number__text"> Zamówienie {{ order_name }} </span> </td> </tr> {%- if po_number %} <tr> <td class="po-number__cell"> <span class="po-number__text"> Numer zamówienia {{ po_number }} </span> </td> </tr> {%- endif %} </td> </tr> </table> </td> </tr> </table> </center> </td> </tr> </table> <table class="row content"> <tr> <td class="content__cell"> <center> <table class="container"> <tr> <td> <h2>Twoja płatność została przetworzona</h2> <p> {% for transaction in transactions %} {% if transaction.id == transaction_id %} Obciążono Cię kwotą <b>{{ transaction.amount | money_with_currency }}</b> z tytułu Twojego zamówienia {{ order_name }}. {% endif %} {% endfor %} </p> {% if order_status_url %} <table class="row actions"> <tr> <td class="empty-line"> </td> </tr> <tr> <td class="actions__cell"> <table class="button main-action-cell"> <tr> <td class="button__cell"><a href="{{ order_status_url }}" class="button__text">Wyświetl swoje zamówienie</a></td> </tr> </table> {% if shop.url %} <table class="link secondary-action-cell"> <tr> <td class="link__cell">lub <a href="{{ shop.url }}">Odwiedź nasz sklep</a></td> </tr> </table> {% endif %} </td> </tr> </table> {% else %} {% if shop.url %} <table class="row actions"> <tr> <td class="actions__cell"> <table class="button main-action-cell"> <tr> <td class="button__cell"><a href="{{ shop.url }}" class="button__text">Odwiedź nasz sklep</a></td> </tr> </table> </td> </tr> </table> {% endif %} {% endif %} </td> </tr> </table> </center> </td> </tr> </table> <table class="row section"> <tr> <td class="section__cell"> <center> <table class="container"> <tr> <td> <h3>Informacje dotyczące klienta</h3> </td> </tr> </table> <table class="container"> <tr> <td> <table class="row"> <tr> <td class="customer-info__item"> <h4>Adres rozliczeniowy</h4> {{ address | format_address }} </td> {% assign transaction_count = transactions | size %} {% if transaction_count > 0 %} <td class="customer-info__item" valign="top"> <h4>Płatność</h4> {% for transaction in transactions %} {% if transaction.id == transaction_id %} {% if transaction.status == "success" or transaction.status == "pending" %} {% if transaction.kind == "capture" or transaction.kind == "sale" %} {% if transaction.payment_details.credit_card_company %} <p class="customer-info__item-content"> <img src="{{ transaction.payment_details.credit_card_company | downcase | replace: ' ', '-' | payment_type_img_url }}" class="customer-info__item-credit" height="24"> <span>z końcówką {{ transaction.payment_details.credit_card_last_four_digits }} — <strong>{{ transaction.amount | money }}</strong></span> </p> {% else %} <p class="customer-info__item-content"> {{ transaction.gateway_display_name }} — <strong>{{ transaction.amount | money }}</strong> </p> {% endif %} {% endif %} {% endif %} {% endif %} {% endfor %} </td> {% endif %} </tr> </table> {% if company_location %} <table class="row"> <tr> <td class="customer-info__item"> <h4>Lokalizacja</h4> <p>{{ company_location.name }}</p> </td> </tr> </table> {% endif %} </td> </tr> </table> </center> </td> </tr> </table> <table class="row footer"> <tr> <td class="footer__cell"> <center> <table class="container"> <tr> <td> <p class="disclaimer__subtext">Jeśli masz pytania, odpowiedz na ten e-mail lub skontaktuj się z nami, pisząc na adres <a href="mailto:{{ shop.email }}">{{ shop.email }}</a></p> </td> </tr> </table> </center> </td> </tr> </table> <img src="{{ 'notifications/spacer.png' | shopify_asset_url }}" class="spacer" height="1" /> </td> </tr> </table> </body> </html>