You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
865 B

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="email_template_transcription" model="mail.template">
<!--create a new email template for meeting summarizer details-->
<field name="name">Account Report email template</field>
<field name="model_id" ref="meeting_summarizer.model_send_mail_transcription"/>
<field name="body_html" type="html">
<div>
<div style="margin: 0px; padding: 0px;">
<p style="margin: 0px; padding: 0px; font-size: 12px;">
Hello,
<br/>
<span t-esc="object.email_body"/>
</p>
</div>
Regards,
<br/>
<span t-esc="object.create_uid.name"/>
</div>
</field>
</record>
</odoo>