19 lines
596 B
XML
19 lines
596 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo noupdate="1">
|
|
|
|
<!--Default Notification Email template -->
|
|
<record id="mail_template_notification" model="mail.template">
|
|
<field name="name">Notification Email</field>
|
|
<field name="subject">${object.subject}</field>
|
|
<field name="model_id" ref="mail.model_mail_message"/>
|
|
<field name="auto_delete" eval="True"/>
|
|
<field name="body_html">${object.body | safe}</field>
|
|
</record>
|
|
|
|
<template id="message_notification_email_usability">
|
|
<div t-raw="message.body"/>
|
|
</template>
|
|
|
|
|
|
</odoo>
|