Skip to Content
Menu
This question has been flagged
1 Reply
1003 Views
Good morning
I would like to change the email text when I click on send & print the invoice in repair
by default here is the text which is displayed "You will find attached the FHTG invoice xxxxx (with the reference: RO/00945) in the amount of 272,798 CFA issued by H T. Please proceed to payment as soon as possible. is possible for you.

Please specify the following reference when paying: FHTG/2023/00672.

We remain at your disposal for any additional questions.
I want to change the text.




Avatar
Discard
Best Answer

Hi,

You can try to extend the existing records for the email template through codes or you can try it with the UI

<record id="auth_signup.reset_password_email" model="email.template">
        <field name="name">Reset Password Custom Name</field>
    </record>
Here I have changed the value of the name field only. You can also change any value as per your wish.

for changing the body of the templates

<record id="auth_signup.reset_password_email" model="email.template">

    <field name="body_html" type="html">

        <div>// Add you content</div>

    </field>

</record>


Hope it helps

Avatar
Discard
Related Posts Replies Views Activity
1
Jun 16
20697
0
Mar 16
5194