Hi to everyone,
when a new order is placed my site send the "new order" mail template, but there are no information regarding the purchased products and the amount of the order, I think the code is ok:
{{template config_path="design/email/header_template"}} <table> <tr class="email-intro"> <td> <p class="greeting">{{var customer.name}}</p <p> {{trans "Thank you for your order from %store_name." store_name=$store.getFrontendName()}} {{trans "Once your package ships we will send you a tracking number."}} {{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> <p> {{trans 'If you have questions about your order, you can email us at <a href="mail[to]:%store_email">%store_email</a>.' store_email=$store_email |raw}} </p> </td> </tr> <tr class="email-summary"> <td> <h1>{{trans 'Your Order <span class="no-link">#%increment_id</span>' increment_id=$order.increment_id |raw}}</h1> <p>{{trans 'Placed on <span class="no-link">%created_at</span>' created_at=$order.getCreatedAtFormatted(1) |raw}}</p> </td> </tr> <tr class="email-information"> <td> {{depend order.getEmailCustomerNote()}} <table class="message-info"> <tr> <td> {{var order.getEmailCustomerNote()|escape|nl2br}} </td> </tr> </table> {{/depend}} <table class="order-details"> <tr> <td class="address-details"> <h3>{{trans "Billing Info"}}</h3> <p>{{var formattedBillingAddress|raw}}</p> </td> {{depend order.getIsNotVirtual()}} <td class="address-details"> <h3>{{trans "Shipping Info"}}</h3> <p>{{var formattedShippingAddress|raw}}</p> </td> {{/depend}} </tr> <tr> <td class="method-info"> <h3>{{trans "Payment Method"}}</h3> {{var payment_html|raw}} </td> {{depend order.getIsNotVirtual()}} <td class="method-info"> <h3>{{trans "Shipping Method"}}</h3> <p>{{var order.getShippingDescription()}}</p> {{if shipping_msg}} <p>{{var shipping_msg}}</p> {{/if}} </td> {{/depend}} </tr> </table> {{layout handle="sales_email_order_items" order=$order area="frontend"}} </td> </tr> </table> {{template config_path="design/email/footer_template"}}
My store is Magento versio 2.3.4
The mail is:
Any suggest for fixing that issue?
Thanks in advance