[IMP] add readme, remove auto following when sending an email, use light version of email notification to avoid injecting useless link in the mail sent

This commit is contained in:
Sébastien BEAU
2018-12-04 11:55:57 +01:00
parent c1618166fb
commit 03564a20b2
4 changed files with 57 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data 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>
</data>
</odoo>