catalog/controller/mail/order.php
Modify Line ~ 307 to below
Code: Select all
$data['comment'] = html_entity_decode($comment);
Code: Select all
$mail->setHtml($this->load->view('mail/order_edit', $data));
catalog/view/theme/default/template/mail/order_edit.twig
to
Code: Select all
{{ text_order_id }} {{ order_id }}<br>
{{ text_date_added }} {{ date_added }}<br>
<br>
{{ text_order_status }}: <b>{{ order_status }}</b>
<br>
{% if link %}
{{ text_link }}
<br>
{{ link }}
<br>
{% endif %}
{% if comment %}
{{ text_comment }}
<br>
{{ comment }}
<br>
<br>
{{ text_footer }}
{% else %}
{{ text_footer }}
{% endif %}