You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

59 lines
2.3 KiB

  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 invoice" store_name=$store.frontend_name}} @-->
  8. <!--@vars {
  9. "var this.getUrl($store,'customer/account/',[_nosid:1])":"Customer Account URL",
  10. "var order_data.customer_name":"Customer Name",
  11. "var comment|escape|nl2br":"Invoice Comment",
  12. "var invoice.increment_id":"Invoice Id",
  13. "var order.increment_id":"Order Id",
  14. "var order_data.frontend_status_label":"Order Status",
  15. "var store.frontend_name":"Store Frontend Name",
  16. "var store_phone":"Store Phone",
  17. "var store_email":"Store Email",
  18. "var store_hours":"Store Hours"
  19. } @-->
  20. {{template config_path="design/email/header_template"}}
  21. <table>
  22. <tr class="email-intro">
  23. <td>
  24. <p class="greeting">{{trans "%name," name=$order_data.customer_name}}</p>
  25. <p>
  26. {{trans
  27. "Your order #%increment_id has been updated with a status of <strong>%order_status</strong>."
  28. increment_id=$order.increment_id
  29. order_status=$order_data.frontend_status_label
  30. |raw}}
  31. </p>
  32. <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>
  33. <p>
  34. {{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}}.
  35. {{depend store_hours}}
  36. {{trans 'Our hours are <span class="no-link">%store_hours</span>.' store_hours=$store_hours |raw}}
  37. {{/depend}}
  38. </p>
  39. </td>
  40. </tr>
  41. <tr class="email-information">
  42. <td>
  43. {{depend comment}}
  44. <table class="message-info">
  45. <tr>
  46. <td>
  47. {{var comment|escape|nl2br}}
  48. </td>
  49. </tr>
  50. </table>
  51. {{/depend}}
  52. </td>
  53. </tr>
  54. </table>
  55. {{template config_path="design/email/footer_template"}}