order_update.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. </p>
  27. <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>
  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}}{{depend store_phone}} {{trans 'or call us at <a href="tel:%store_phone">%store_phone</a>' store_phone=$store_phone |raw}}{{/depend}}.
  30. {{depend store_hours}}
  31. {{trans 'Our hours are <span class="no-link">%store_hours</span>.' store_hours=$store_hours |raw}}
  32. {{/depend}}
  33. </p>
  34. </td>
  35. </tr>
  36. <tr class="email-information">
  37. <td>
  38. {{depend comment}}
  39. <table class="message-info">
  40. <tr>
  41. <td>
  42. {{var comment|escape|nl2br}}
  43. </td>
  44. </tr>
  45. </table>
  46. {{/depend}}
  47. </td>
  48. </tr>
  49. </table>
  50. {{template config_path="design/email/footer_template"}}