Advertisement
customfiy

new_order_notification

Feb 5th, 2019
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. <p>Hello {{ shop_name }},</p>
  2. <p></p>
  3. <p>{% if customer.name %}{{ customer.name }}{% else %}Someone{% endif %} placed a new order with your store, {{ date | date: "%b %d %I:%M%p" }}:</p>
  4. <p></p>
  5. <ul> {% for line in subtotal_line_items %} <li> {% capture link_custom %}{{ shop.url }}/apps/customify?show_custom=1&id={{ line.properties.customify_id }}{% endcapture %}
  6. {% if line.properties.customify_id %} <img src="{{ link_custom }}" align="left" width="60" height="60" class="order-list__product-image"/>
  7. <br/> {{ 'view customization' | link_to: link_custom }}
  8. {% else %}
  9. <img src="{{ line | img_url: 'compact_cropped' }}" align="left" width="60" height="60" class="order-list__product-image"/> {% endif %} {{ line.quantity }}x {{ line.title }} {% if line.sku != "" %}(SKU: {{line.sku}}){% endif %} for {{ line.price | money }} each </li> {% endfor %} </ul>
  10. <a href="https://{{ shop.permanent_domain }}/admin/orders/{{ id }}">View order {{order_name}} </a>
  11. {% if fulfillment_aborted %}
  12. <p>The above order was not automatically fulfilled because it was flagged as suspicious.</p>{% endif %}
  13. <p></p><br>
  14. {% if has_high_risks? %}<p><b>Security check:</b></p>
  15. <p>This order has a risk of being fraudulent. Review the order in your store's admin and contact the customer to verify their information.</p>
  16. <p></p>{% endif %}
  17. {% if gateway %}<p><b>Payment processing method:</b></p>
  18. <p>{{ gateway }}</p>
  19. <p></p>{% endif %}
  20. {% if requires_shipping and shipping_address %}
  21. <p><b>Delivery method:</b></p>
  22. {% for shipping_method in shipping_methods %}<p>{{ shipping_method.title }}</p>{% endfor %}
  23. <p></p>
  24. <p><b>Shipping address:</b></p>
  25. <p>{{ shipping_address.name }}</p>
  26. <p>{{ shipping_address.street }}</p>
  27. <p>{{ shipping_address.city }}, {{ shipping_address.province }} {{ shipping_address.zip }}</p>
  28. <p>{{ shipping_address.country }}</p>
  29. <p>{{ shipping_address.phone }}{% endif %}</p>
  30. <p></p>
  31.  
  32. {% if shopify_shipping_enabled %}
  33. <p>Save time and money by <a href="{{ fulfillment_url }}">fulfilling with Shopify Shipping</a></p>
  34. <p></p>
  35. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement