| Current Path : /home/rtorresani/www/vendor/magento/module-sales/view/frontend/email/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/view/frontend/email/invoice_update_guest.html |
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<!--@subject {{trans "Update to your %store_name invoice" store_name=$store.frontend_name}} @-->
<!--@vars {
"var order_data.customer_name":"Guest Customer Name",
"var comment|escape|nl2br":"Invoice Comment",
"var invoice.increment_id":"Invoice Id",
"var order.increment_id":"Order Id",
"var order_data.frontend_status_label":"Order Status",
"var store.frontend_name":"Store Frontend Name",
"var store_phone":"Store Phone",
"var store_email":"Store Email",
"var store_hours":"Store Hours"
} @-->
{{template config_path="design/email/header_template"}}
<table>
<tr class="email-intro">
<td>
<p class="greeting">{{trans "%name," name=$order_data.customer_name}}</p>
<p>
{{trans
"Your order #%increment_id has been updated with a status of <strong>%order_status</strong>."
increment_id=$order.increment_id
order_status=$order_data.frontend_status_label
|raw}}
</p>
<p>
{{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}}.
{{depend store_hours}}
{{trans 'Our hours are <span class="no-link">%store_hours</span>.' store_hours=$store_hours |raw}}
{{/depend}}
</p>
</td>
</tr>
<tr class="email-information">
<td>
{{depend comment}}
<table class="message-info">
<tr>
<td>
{{var comment|escape|nl2br}}
</td>
</tr>
</table>
{{/depend}}
</td>
</tr>
</table>
{{template config_path="design/email/footer_template"}}