Guest User

Shopify Help

a guest
Aug 13th, 2023
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 22.24 KB | Help | 0 0
  1. {% capture email_title %}
  2. {% endcapture %}
  3. {% capture email_body %}
  4.   {% if has_pending_payment %}
  5.     {% if buyer_action_required %}
  6.         <p style="font-weight:bold; text-align:center;" > You’ll get a confirmation email after completing your payment.</p>
  7.     {% else %}
  8.     <p style="font-weight:bold; text-align:center;" > Your payment is being processed. You'll get an email when your order is confirmed.</p>
  9.     {% endif %}
  10.   {% else %}
  11.     {% if requires_shipping %}
  12.     {% case delivery_method %}
  13.         {% when 'pick-up' %}
  14.             <p style="font-weight:bold; text-align:center;" >  You’ll receive an email when your order is ready for pickup.<p>
  15.         {% when 'local' %}
  16.             <p style="font-weight:bold; text-align:center;" >Hi {{ customer.first_name }}, we're getting your order ready for delivery.</p>
  17.         {% else %}
  18.         <p style="font-weight:bold; text-align:center;" >You’ll receive an email when your order is out for delivery.<p>
  19.       {% endcase %}
  20.         {% if delivery_instructions != blank  %}
  21.           <p><b>Delivery information:</b> {{ delivery_instructions }}</p>
  22.         {% endif %}
  23.        {% if consolidated_estimated_delivery_time %}
  24.        {% endif %}
  25.     {% endif %}
  26.   {% endif %}
  27.   {% assign gift_card_line_items = line_items | where: "gift_card" %}
  28.   {% assign found_gift_card_with_recipient_email = false %}
  29.   {% for line_item in gift_card_line_items %}
  30.     {% if line_item.properties["__shopify_send_gift_card_to_recipient"] and line_item.properties["Recipient email"] %}
  31.       {% assign found_gift_card_with_recipient_email = true %}
  32.       {% break %}
  33.     {% endif %}
  34.   {% endfor %}
  35.   {% if found_gift_card_with_recipient_email %}
  36.     <p style="font-weight:bold; text-align:center;" >Your gift card recipient will receive an email with their gift card code.</p>
  37.   {% elsif gift_card_line_items.first %}
  38.   <p style="font-weight:bold; text-align:center;" >You’ll receive separate emails for any gift cards.</p>
  39.   {% endif %}
  40. {% endcapture %}
  41.  
  42. <!DOCTYPE html>
  43. <html lang="en">
  44.   <head>
  45.   <title>{{ email_title }}</title>
  46.   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  47.   <meta name="viewport" content="width=device-width">
  48.   <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css">
  49.   <style>
  50.     .button__cell { background: {{ shop.email_accent_color }}; }
  51.     a, a:hover, a:active, a:visited { color: {{ shop.email_accent_color }}; }
  52.   </style>
  53. </head>
  54.  
  55.   <body>
  56.     <table class="body">
  57.       <tr>
  58.         <td>
  59.           <table class="header row">
  60.   <tr>
  61.     <td class="header__cell">
  62.       <center>
  63.  
  64.         <table class="container">
  65.           <tr>
  66.             <td>
  67.  
  68.               <table class="row">
  69.                 <tr style="display: block;">
  70.                   <td class="shop-name__cell" style="text-align: center;display: block; font-weight:bold;">
  71.                     {%- if shop.email_logo_url %}
  72.                       <h1 class="shop-name__text">
  73.                         <a href="{{shop.url}}" style="font-weight:bold;">{{ shop.name }}</a>
  74.                       </h1>
  75.                     {%- endif %}
  76.                   </td>
  77.  
  78.                     <td class="order-number__cell" style="text-align: left;display: block; ">
  79.                       <span class="order-number__text" style="text-align: left;display: block; ">
  80.                         Order {{ order_name }}
  81.                       </span>
  82.                     </td>
  83.                 </tr>
  84.               </table>
  85.  
  86.             </td>
  87.           </tr>
  88.         </table>
  89.  
  90.       </center>
  91.     </td>
  92.   </tr>
  93. </table>
  94.  
  95.           <table class="row content">
  96.   <tr>
  97.     <td class="content__cell">
  98.       <center>
  99.         <table class="container">
  100.           <tr>
  101.             <td>
  102.              
  103.             <h2>{{ email_title }}</h2>
  104.             <p>{{ email_body }}</p>
  105.             {% assign transaction_count = transactions | size %}
  106.   {% if transaction_count > 0 %}
  107.     {% for transaction in transactions %}
  108.       {% if transaction.show_buyer_pending_payment_instructions? %}
  109.         <p> {{transaction.buyer_pending_payment_notice}} </p>
  110.         <p>
  111.         <table class="row">
  112.           <tr>
  113.             {% for instruction in transaction.buyer_pending_payment_instructions %}
  114.               <td>{{ instruction.header }}</td>
  115.             {% endfor %}
  116.             <td>Amount</td>
  117.           </tr>
  118.           <tr>
  119.             {% for instruction in transaction.buyer_pending_payment_instructions %}
  120.               <td>{{ instruction.value }}</td>
  121.             {% endfor %}
  122.             <td>{{transaction.amount | money}}</td>
  123.           </tr>
  124.         </table>
  125.         </p>
  126.       {% endif %}
  127.     {% endfor%}
  128.   {% endif %}
  129.  
  130.             {% if order_status_url %}
  131.               <table class="row actions">
  132.   <tr>
  133.     <td class="empty-line">&nbsp;</td>
  134.   </tr>
  135.   <tr>
  136.     <td class="actions__cell">
  137.       <table class="link secondary-action-cell"style="font-weight:bold; text-align:center;" >
  138.         <tr>
  139.           <td class="link__cell"><a href="{{ order_status_url }}" class="link__cell">VIEW YOUR ORDER</a></td>
  140.         </tr>
  141.       </table>
  142.       {% if shop.url %}
  143.     <table class="link secondary-action-cell"style="font-weight:bold; text-align:center;" >
  144.       <tr>
  145.         <td class="link__cell"><a href="{{ shop.url }}">VISIT OUR STORE</a></td>
  146.       </tr>
  147.     </table>
  148. {% endif %}
  149.  
  150.     </td>
  151.   </tr>
  152. </table>
  153.             {% else %}
  154.               {% if shop.url %}
  155.     <table class="row actions">
  156.       <tr>
  157.         <td class="actions__cell">
  158.           <table class="button main-action-cell">
  159.             <tr>
  160.               <td class="button__cell"><a href="{{ shop.url }}" class="button__text" style="font-weight:bold; text-align:center;" >VISIT OUR STORE</a></td>
  161.             </tr>
  162.           </table>
  163.         </td>
  164.       </tr>
  165.     </table>
  166. {% endif %}
  167.             {% endif %}
  168.             </td>
  169.           </tr>
  170.     </td>
  171.   </tr>
  172.           <table class="row section">
  173.   <tr>
  174.     <td class="section__cell">
  175.         <table class="container">
  176.           <tr>
  177.             <td>
  178.               <h3 style="font-weight:bold; text-align:center;" >ORDER SUMMARY</h3>
  179.             </td>
  180.           </tr>
  181.         </table>
  182.         <table class="container">
  183.           <tr>
  184.             <td>
  185.              
  186.            
  187. <table class="row">
  188.   {% for line in subtotal_line_items %}
  189.   <tr class="order-list__item">
  190.     <td class="order-list__item__cell">
  191.       <table>
  192.         <td>
  193.           {% if line.image %}
  194.             <img src="{{ line | img_url: 'compact_cropped' }}" style="font-weight:bold; text-align:center;" width="60" height="60" class="order-list__product-image"/>
  195.           {% endif %}
  196.         </td>
  197.         <td class="order-list__product-description-cell">
  198.           {% if line.product.title %}
  199.             {% assign line_title = line.product.title %}
  200.           {% else %}
  201.             {% assign line_title = line.title %}
  202.           {% endif %}
  203.  
  204.           {% if line.quantity < line.quantity %}
  205.            {% capture line_display %} {{ line.quantity }} of {{ line.quantity }} {% endcapture %}
  206.          {% else %}
  207.            {% assign line_display = line.quantity  %}
  208.          {% endif %}
  209.  
  210.          <span class="order-list__item-title">{{ line_title }}&nbsp;&times;&nbsp;{{ line_display }}</span><br/>
  211.  
  212.           {% if line.variant.title != 'Default Title' %}
  213.             <span class="order-list__item-variant">{{ line.variant.title }}</span><br/>
  214.           {% endif %}
  215.  
  216.           {% for group in line.groups %}
  217.             <span class="order-list__item-variant">Part of: {{ group.display_title }}</span><br/>
  218.           {% endfor %}
  219.  
  220.             {% if line.gift_card and line.properties["__shopify_send_gift_card_to_recipient"] %}
  221.               {% for property in line.properties %}
  222.   {% assign property_first_char = property.first | slice: 0 %}
  223.   {% if property.last != blank and property_first_char != '_' %}
  224.     <div class="order-list__item-property">
  225.       <dt>{{ property.first }}:</dt>
  226.       <dd>
  227.       {% if property.last contains '/uploads/' %}
  228.         <a href="{{ property.last }}" class="link" target="_blank">
  229.         {{ property.last | split: '/' | last }}
  230.         </a>
  231.       {% else %}
  232.         {{ property.last }}
  233.       {% endif %}
  234.       </dd>
  235.     </div>
  236.   {% endif %}
  237. {% endfor %}
  238.  
  239.             {% endif %}
  240.  
  241.           {% if line.selling_plan_allocation %}
  242.             <span class="order-list__item-variant">{{ line.selling_plan_allocation.selling_plan.name }}</span><br/>
  243.           {% endif %}
  244.  
  245.           {% if line.refunded_quantity > 0 %}
  246.             <span class="order-list__item-refunded">Refunded</span>
  247.           {% endif %}
  248.  
  249.           {% if line.discount_allocations %}
  250.             {% for discount_allocation in line.discount_allocations %}
  251.               {% if discount_allocation.discount_application.target_selection != 'all' %}
  252.                 <span class="order-list__item-discount-allocation">
  253.                   <img src="{{ 'notifications/discounttag.png' | shopify_asset_url }}" width="18" height="18" class="discount-tag-icon" />
  254.                   <span>
  255.                     {{ discount_allocation.discount_application.title | upcase }}
  256.                     (-{{ discount_allocation.amount | money }})
  257.                   </span>
  258.                 </span>
  259.               {% endif %}
  260.             {% endfor %}
  261.           {% endif %}
  262.         </td>
  263.           <td class="order-list__price-cell">
  264.             {% if line.original_line_price != line.final_line_price %}
  265.               <del class="order-list__item-original-price">{{ line.original_line_price | money }}</del>
  266.             {% endif %}
  267.             <p class="order-list__item-price">
  268.               {% if line.final_line_price > 0 %}
  269.                 {{ line.final_line_price | money }}
  270.               {% else %}
  271.                 Free
  272.               {% endif %}
  273.             </p>
  274.           </td>
  275.       </table>
  276.     </td>
  277.   </tr>{% endfor %}
  278. </table>
  279.  
  280.             <table class="row subtotal-lines">
  281.   <tr>
  282.     <td class="subtotal-spacer"></td>
  283.     <td>
  284.       <table class="row subtotal-table">
  285.         {% for discount_application in discount_applications %}
  286.           {% if discount_application.target_selection == 'all' %}
  287.             {% capture discount_title %}
  288.               {% if discount_application.title %}
  289.                 {{ discount_application.title | upcase }}
  290.               {% else %}
  291.                 Discount
  292.               {% endif %}
  293.             {% endcapture %}
  294.            
  295. <tr class="subtotal-line">
  296.   <td class="subtotal-line__title">
  297.     <p>
  298.       <span>Discount</span>
  299.         <span class="subtotal-line__discount">
  300.           <img src="{{ 'notifications/discounttag.png' | shopify_asset_url }}" width="18" height="18" class="discount-tag-icon" />
  301.           <span class="subtotal-line__discount-title">{{ discount_title }}</span>
  302.         </span>
  303.     </p>
  304.   </td>
  305.   <td class="subtotal-line__value">
  306.     <strong>-{{ discount_application.total_allocated_amount | money }}</strong>
  307.   </td>
  308. </tr>
  309.  
  310.           {% endif %}
  311.         {% endfor %}
  312.  
  313.        
  314. <tr class="subtotal-line">
  315.   <td class="subtotal-line__title">
  316.     <p>
  317.       <span>Subtotal</span>
  318.     </p>
  319.   </td>
  320.   <td class="subtotal-line__value">
  321.     <strong>{{ subtotal_price | money }}</strong>
  322.   </td>
  323. </tr>
  324.  
  325.         {% if delivery_method == 'pick-up' %}
  326.          
  327. <tr class="subtotal-line">
  328.   <td class="subtotal-line__title">
  329.     <p>
  330.       <span>Pickup</span>
  331.     </p>
  332.   </td>
  333.   <td class="subtotal-line__value">
  334.     <strong>{{ shipping_price | money }}</strong>
  335.   </td>
  336. </tr>
  337.  
  338.         {% else %}
  339.          
  340. <tr class="subtotal-line">
  341.   <td class="subtotal-line__title">
  342.     <p>
  343.       <span>Shipping</span>
  344.     </p>
  345.   </td>
  346.   <td class="subtotal-line__value">
  347.     <strong>{{ shipping_price | money }}</strong>
  348.   </td>
  349. </tr>
  350.  
  351.         {% endif %}
  352.  
  353.         {% if total_duties %}
  354.          
  355. <tr class="subtotal-line">
  356.   <td class="subtotal-line__title">
  357.     <p>
  358.       <span>Duties</span>
  359.     </p>
  360.   </td>
  361.   <td class="subtotal-line__value">
  362.     <strong>{{ total_duties | money }}</strong>
  363.   </td>
  364. </tr>
  365.  
  366.         {% endif %}
  367.  
  368.        
  369. <tr class="subtotal-line">
  370.   <td class="subtotal-line__title">
  371.     <p>
  372.       <span>Taxes</span>
  373.     </p>
  374.   </td>
  375.   <td class="subtotal-line__value">
  376.     <strong>{{ tax_price | money }}</strong>
  377.   </td>
  378. </tr>
  379.  
  380.  
  381.         {% if total_tip and total_tip > 0 %}
  382.          
  383. <tr class="subtotal-line">
  384.   <td class="subtotal-line__title">
  385.     <p>
  386.       <span>Tip</span>
  387.     </p>
  388.   </td>
  389.   <td class="subtotal-line__value">
  390.     <strong>{{ total_tip | money }}</strong>
  391.   </td>
  392. </tr>
  393.  
  394.         {% endif %}
  395.       </table>
  396.       {% assign transaction_size = 0 %}
  397.       {% assign transaction_amount = 0 %}
  398.       {% for transaction in transactions %}
  399.         {% if transaction.status == "success" %}
  400.         {% unless transaction.kind == "authorization" or transaction.kind == "void" %}
  401.           {% assign transaction_size = transaction_size | plus: 1 %}
  402.           {% assign transaction_amount = transaction_amount | plus: transaction.amount %}
  403.         {% endunless %}
  404.         {% endif %}
  405.       {% endfor %}
  406.       <table class="row subtotal-table subtotal-table--total">
  407.       {% if payment_terms and payment_terms.automatic_capture_at_fulfillment == false or b2b?%}
  408.         {% assign due_at_date = payment_terms.next_payment.due_at | date: "%b %d, %Y" %}
  409.        
  410. <tr class="subtotal-line">
  411.   <td class="subtotal-line__title">
  412.     <p>
  413.       <span>Total paid today</span>
  414.     </p>
  415.   </td>
  416.   <td class="subtotal-line__value">
  417.     <strong>{{ transaction_amount | money_with_currency }}</strong>
  418.   </td>
  419. </tr>
  420.  
  421.         <div class="payment-terms">
  422.          
  423. <tr class="subtotal-line">
  424.   <td class="subtotal-line__title">
  425.     <p>
  426.       <span>Total due {{ due_at_date }}</span>
  427.     </p>
  428.   </td>
  429.   <td class="subtotal-line__value">
  430.     <strong>{{ payment_terms.next_payment.amount_due | money_with_currency }}</strong>
  431.   </td>
  432. </tr>
  433.  
  434.         </div>
  435.       {% else %}
  436.        
  437. <tr class="subtotal-line">
  438.   <td class="subtotal-line__title">
  439.     <p>
  440.       <span>Total</span>
  441.     </p>
  442.   </td>
  443.   <td class="subtotal-line__value">
  444.     <strong>{{ total_price | money_with_currency }}</strong>
  445.   </td>
  446. </tr>
  447.  
  448.       {% endif %}
  449.       </table>
  450.  
  451.       {% if total_discounts > 0 %}
  452.         <p class="total-discount">
  453.           You saved <span class="total-discount--amount">{{ total_discounts | money }}</span>
  454.         </p>
  455.       {% endif %}
  456.  
  457.       {% unless payment_terms %}
  458.       {% if transaction_size > 1 or transaction_amount < total_price %}
  459.        <table class="row subtotal-table">
  460.           <tr><td colspan="2" class="subtotal-table__line"></td></tr>
  461.           <tr><td colspan="2" class="subtotal-table__small-space"></td></tr>
  462.  
  463.           {% for transaction in transactions %}
  464.             {% if transaction.status == "success" and transaction.kind == "capture" or transaction.kind == "sale" %}
  465.               {% if transaction.payment_details.credit_card_company %}
  466.                 {% capture transaction_name %}{{ transaction.payment_details.credit_card_company }} (ending in {{ transaction.payment_details.credit_card_last_four_digits }}){% endcapture %}
  467.               {% else %}
  468.                 {% capture transaction_name %}{{ transaction.gateway_display_name }}{% endcapture %}
  469.               {% endif %}
  470.  
  471.              
  472. <tr class="subtotal-line">
  473.   <td class="subtotal-line__title">
  474.     <p>
  475.       <span>{{transaction_name}}</span>
  476.     </p>
  477.   </td>
  478.   <td class="subtotal-line__value">
  479.     <strong>{{ transaction.amount | money }}</strong>
  480.   </td>
  481. </tr>
  482.  
  483.             {% endif %}
  484.             {% if transaction.kind == 'refund' %}
  485.               {% if transaction.payment_details.credit_card_company %}
  486.                 {% assign refund_method_title = transaction.payment_details.credit_card_company %}
  487.               {% else %}
  488.                 {% assign refund_method_title = transaction.gateway %}
  489.               {% endif %}
  490.  
  491.              
  492. <tr class="subtotal-line">
  493.   <td class="subtotal-line__title">
  494.     <p>
  495.       <span>Refund</span>
  496.         <br>
  497.         <small>{{ refund_method_title | capitalize }}</small>
  498.     </p>
  499.   </td>
  500.   <td class="subtotal-line__value">
  501.     <strong>- {{ transaction.amount | money }}</strong>
  502.   </td>
  503. </tr>
  504.  
  505.             {% endif %}
  506.           {% endfor %}
  507.         </table>
  508.       {% endif %}
  509.  
  510.  
  511.       {% endunless %}
  512.     </td>
  513.   </tr>
  514. </table>
  515.  
  516.  
  517.             </td>
  518.           </tr>
  519.         </table>
  520.       </center>
  521.     </td>
  522.   </tr>
  523. </table>
  524.  
  525.           <table class="row section">
  526.   <tr>
  527.     <td class="section__cell">
  528.       <center>
  529.         <table class="container">
  530.           <tr>
  531.             <td>
  532.               <h3 style="font-weight:bold; text-align:center;">CUSTOMER INFORMATION</h3>
  533.             </td>
  534.           </tr>
  535.         </table>
  536.         <table class="container">
  537.           <tr>
  538.             <td>
  539.              
  540.             <table class="row">
  541.               <tr>
  542.                 {% if requires_shipping and shipping_address %}
  543.                   <td class="customer-info__item" style="text-align:center;">
  544.                     <h4 style="font-weight:bold; text-align:center;">SHIPPING ADDRESS</h4>
  545.                     {{ shipping_address | format_address }}
  546.                   </td>
  547.                 {% endif %}
  548.                 {% if billing_address %}
  549.                   <td class="customer-info__item" style="text-align:center;">
  550.                     <h4 style="font-weight:bold; text-align:center;">BILLING ADDRESS</h4>
  551.                     {{ billing_address | format_address }}
  552.                   </td>
  553.                 {% endif %}
  554.               </tr>
  555.             </table>
  556.             <table class="row">
  557.               <tr>
  558.                 {% if company_location %}
  559.                   <td class="customer-info__item">
  560.                     <h4>Location</h4>
  561.                     <p>
  562.                       {{ company_location.name }}
  563.                     </p>
  564.                   </td>
  565.                 {% endif %}
  566.                 {% if transaction_size > 0 or payment_terms and payment_terms.automatic_capture_at_fulfillment == false or b2b? %}
  567.                   <td class="customer-info__item">
  568.                     <h4>PAYMENT</h4>
  569.                     <p class="customer-info__item-content">
  570.                       {% if payment_terms %}
  571.                         {% assign due_date = payment_terms.next_payment.due_at | default: nil %}
  572.                         {% if payment_terms.type == 'receipt' or payment_terms.type == 'fulfillment' and payment_terms.next_payment.due_at == nil %}
  573.                           {{ payment_terms.translated_name }}<br>
  574.                         {% else %}
  575.                           {{ payment_terms.translated_name }}: Due {{ due_date | date: format: 'date' }}<br>
  576.                         {% endif %}
  577.                       {% endif %}
  578.                       {% if transaction_size > 0 %}
  579.                         {% for transaction in transactions %}
  580.                           {% if transaction.status == "success" or transaction.status == "pending" %}
  581.                             {% if transaction.kind == "capture" or transaction.kind == "sale" %}
  582.                               {% if transaction.payment_details.credit_card_company %}
  583.                                 <img src="{{ transaction.payment_details.credit_card_company | payment_icon_png_url  }}" class="customer-info__item-credit" height="24" alt="{{ transaction.payment_details.credit_card_company }}">
  584.                                 <span>ending with {{ transaction.payment_details.credit_card_last_four_digits }}</span><br>
  585.                               {% elsif transaction.gateway_display_name == "Gift card" %}
  586.                                 <img src="{{ transaction.gateway_display_name | downcase | replace: ' ', '-'  | payment_type_img_url }}" class="customer-info__item-credit" height="24">
  587.                                 ending with {{ transaction.payment_details.gift_card.last_four_characters | upcase }}<br>
  588.                                   &emsp;&emsp;&emsp;&nbsp;Gift card balance - <b>{{ transaction.payment_details.gift_card.balance |  money }}</b>
  589.                               {% elsif transaction.gateway_display_name != "Shop Cash" %}
  590.                                 {{ transaction.gateway_display_name }}<br>
  591.                               {% endif %}
  592.                             {% elsif transaction.kind == "authorization" and transaction.gateway_display_name == "Shop Cash" %}
  593.                               <span>Shop Cash - <b>{{ transaction.amount | money }}</b></span>
  594.                             {% endif %}
  595.                           {% endif %}
  596.                         {% endfor %}
  597.                       {% endif %}
  598.                     </p>
  599.                   </td>
  600.                 {% endif %}
  601.               </tr>
  602.               <tr>
  603.                 {% if requires_shipping and shipping_address %}
  604.                   {% if shipping_method %}
  605.                     <td class="customer-info__item"style="text-align:center;">
  606.                       <h4 style="font-weight:bold;">SHIPPING METHOD</h4>
  607.                         <p>
  608.                           {% if delivery_promise_branded_shipping_line %}
  609.                             {{ delivery_promise_branded_shipping_line }}
  610.                           {% else %}
  611.                             {{ shipping_method.title }}
  612.                           {% endif %}
  613.                         </p>
  614.                     </td>
  615.                   {% endif %}
  616.                 {% endif %}
  617.               </tr>
  618.             </table>
  619.  
  620.             </td>
  621.           </tr>
  622.         </table>
  623.       </center>
  624.     </td>
  625.   </tr>
  626. </table>
  627.  
  628.           <table class="row footer">
  629.   <tr>
  630.     <td class="footer__cell">
  631.       <center>
  632.         <table class="container">
  633.           <tr>
  634.             <td>
  635.              
  636.               <p class="disclaimer__subtext" style="text-align:center;" >IF YOU HAVE ANY QUESTIONS, REPLY TO THIS EMAIL OR CONTACT US AT <br><a href="mailto:[email protected]">[email protected]</a></p>
  637.             </td>
  638.           </tr>
  639.         </table>
  640.       </center>
  641.     </td>
  642.   </tr>
  643. </table>
  644.  
  645. <img src="{{ 'notifications/spacer.png' | shopify_asset_url }}" class="spacer" height="1" />
  646.  
  647.         </td>
  648.       </tr>
  649.     </table>
  650.   </body>
  651. </html>
Advertisement
Add Comment
Please, Sign In to add comment