order_update.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 order" 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. } @-->
  15. {{template config_path="design/email/header_template"}}
  16. <table>
  17. <tr class="email-intro">
  18. <td>
  19. <p class="greeting">{{trans "%name," name=$order.getCustomerName()}}</p>
  20. <p>
  21. {{trans
  22. "Your order #%increment_id has been updated with a status of <strong>%order_status</strong>."
  23. increment_id=$order.increment_id
  24. order_status=$order.getFrontendStatusLabel()
  25. |raw}}
  26. {{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}}
  27. </p>
  28. <p>
  29. {{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}}
  30. </p>
  31. </td>
  32. </tr>
  33. <tr class="email-information">
  34. <td>
  35. {{depend comment}}
  36. <table class="message-info">
  37. <tr>
  38. <td>
  39. {{var comment|escape|nl2br}}
  40. </td>
  41. </tr>
  42. </table>
  43. {{/depend}}
  44. </td>
  45. </tr>
  46. </table>
  47. {{template config_path="design/email/footer_template"}}