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.
 
 
 
 
 

27 lines
956 B

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Mail template for sending mail to the partner while
the request is approved or rejected -->
<record id="gdpr_request_email_template" model="mail.template">
<field name="name">Gdpr Requests</field>
<field name="model_id" ref="website_gdpr_odoo.model_gdpr_request"/>
<field name="subject">Your Gdpr Request Status</field>
<field name="auto_delete" eval="True"/>
<field name="body_html" type="html">
<div style="margin: 0px; padding: 0px;">
<p style="margin: 0px; padding: 0px; font-size: 13px;">
Hi,
<br/>
<br/>
<t t-out="ctx.get('content')"/>
</p>
<br/>
Regards,
<br/>
<t t-out="ctx.get('company')"/>
</div>
</field>
</record>
</odoo>