shipment_update_guest.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 billing.getName()":"Guest Customer Name",
  10. "var comment":"Order Comment",
  11. "var order.increment_id":"Order Id",
  12. "var order.getFrontendStatusLabel()":"Order Status",
  13. "var shipment.increment_id":"Shipment Id"
  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=$billing.getName()}}</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>
  28. {{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}}.
  29. {{depend store_hours}}
  30. {{trans 'Our hours are <span class="no-link">%store_hours</span>.' store_hours=$store_hours |raw}}
  31. {{/depend}}
  32. </p>
  33. </td>
  34. </tr>
  35. <tr class="email-information">
  36. <td>
  37. {{depend comment}}
  38. <table class="message-info">
  39. <tr>
  40. <td>
  41. {{var comment|escape|nl2br}}
  42. </td>
  43. </tr>
  44. </table>
  45. {{/depend}}
  46. </td>
  47. </tr>
  48. </table>
  49. {{template config_path="design/email/footer_template"}}