diff options
Diffstat (limited to 'addons/hr_presence/data/mail_data.xml')
| -rw-r--r-- | addons/hr_presence/data/mail_data.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/addons/hr_presence/data/mail_data.xml b/addons/hr_presence/data/mail_data.xml new file mode 100644 index 00000000..08a5731e --- /dev/null +++ b/addons/hr_presence/data/mail_data.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="1"> + <record id="mail_template_presence" model="mail.template"> + <field name="name">Employee: Absence email</field> + <field name="model_id" ref="hr.model_hr_employee"/> + <field name="subject">Unexpected Absence</field> + <field name="email_from">${user.email_formatted | safe}</field> + <field name="email_to">${(object.user_id.email_formatted or object.work_email) | safe}</field> + <field name="auto_delete" eval="False"/> + <field name="body_html" type="xml"> + <div> + Dear ${object.name},<br/><br/> + Exception made if there was a mistake of ours, it seems that you are not at your office and there is not request of time off from you.<br/> + Please, take appropriate measures in order to carry out this work absence.<br/> + Do not hesitate to contact your manager or the human resource department. + <br/>Best Regards,<br/><br/> + </div> + </field> + </record> + </data> +</odoo> |
