shipment_update.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <!--@subject {{trans "Update to your %store_name shipment" store_name=$store.getFrontendName()}} @-->
  8. <!--@vars {
  9. "var this.getUrl($store, 'customer/account/')":"Customer Account URL",
  10. "var order.getCustomerName()":"Customer Name",
  11. "var comment":"Order Comment",
  12. "var order.increment_id":"Order Id",
  13. "var order.getFrontendStatusLabel()":"Order Status",
  14. "var shipment.increment_id":"Shipment Id"
  15. } @-->
  16. {{template config_path="design/email/header_template"}}
  17. <table>
  18. <tr class="email-intro">
  19. <td>
  20. <p class="greeting">{{trans "%name," name=$order.getCustomerName()}}</p>
  21. <p>
  22. {{trans
  23. "Your order #%increment_id has been updated with a status of <strong>%order_status</strong>."
  24. increment_id=$order.increment_id
  25. order_status=$order.getFrontendStatusLabel()
  26. |raw}}
  27. </p>
  28. <p>{{trans 'You can check the status of your order by <a href="%account_url">logging into your account</a>.' account_url=$this.getUrl($store,'customer/account/',[_nosid:1]) |raw}}</p>
  29. <p>
  30. {{trans 'If you have questions about your order, you can email us at <a href="mailto:%store_email">%store_email</a>' store_email=$store_email |raw}}{{depend store_phone}} {{trans 'or call us at <a href="tel:%store_phone">%store_phone</a>' store_phone=$store_phone |raw}}{{/depend}}.
  31. {{depend store_hours}}
  32. {{trans 'Our hours are <span class="no-link">%store_hours</span>.' store_hours=$store_hours |raw}}
  33. {{/depend}}
  34. </p>
  35. </td>
  36. </tr>
  37. <tr class="email-information">
  38. <td>
  39. {{depend comment}}
  40. <table class="message-info">
  41. <tr>
  42. <td>
  43. {{var comment|escape|nl2br}}
  44. </td>
  45. </tr>
  46. </table>
  47. {{/depend}}
  48. </td>
  49. </tr>
  50. </table>
  51. {{template config_path="design/email/footer_template"}}