Advertisement
sparkweb

Order Desk: Dropship Email Template

May 28th, 2014
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.98 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. body {
  6.     font-family: Arial;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <p>Please ship the following order to this customer:</p>
  12.  
  13. <p>{{ shipping.first_name }} {{ shipping.last_name }}<br>
  14. {{ shipping.company ? shipping.company ~ "<br>" }}
  15. {{ shipping.address1 }}<br>
  16. {{ shipping.address2 ? shipping.address2 ~ "<br>" }}
  17. {{ shipping.city }}, {{ shipping.state }} {{ shipping.postal_code }}<br>
  18. {{ shipping.country }}</p>
  19.  
  20. <p>Order ID: {{ source_id }}</p>
  21.  
  22. <ul>
  23. {% for item in order_items %}
  24.     <li>
  25.     <b>{{ item.name }}</b><br>
  26.     SKU: {{ item.code }}<br>
  27.     Quantity: {{ item.quantity }}
  28.     </li>
  29.     {% if item.variation_list|length > 0 %}
  30.         <ul>
  31.  
  32.         {% for key, val in item.variation_list %}
  33.             <li>{{ key }}: {{ val }}</li>
  34.         {% endfor %}
  35.  
  36.         </ul>
  37.     {% endif %}
  38. {% endfor %}
  39. </ul>
  40.  
  41. <p>Thank you,</p>
  42.  
  43. <p><i>{{ store_name }}</i></p>
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement