1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/documents_hr_payroll/data/mail_template_data.xml
2024-12-10 09:04:09 +07:00

25 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="1">
<record id="mail_template_new_declaration" model="mail.template">
<field name="name">Payroll: New Declaration</field>
<field name="model_id" ref="hr_payroll.model_hr_employee"/>
<field name="subject">{{ object.name }}, a new declaration file is available for you</field>
<field name="email_from">{{ user.email_formatted }}</field>
<field name="partner_to">{{ object.work_contact_id.id }}</field>
<field name="body_html" type="html">
<table border="0" cellpadding="0" cellspacing="0" style="width:100%; margin:0px auto;"><tbody>
<tr><td valign="top" style="text-align: left; font-size: 14px;">
Dear <t t-esc="object.name"></t>, a new declaration file is available for you.<br/><br/>
Please find the PDF in your employee portal.<br/><br/>
Have a nice day,<br/>
The HR Team
</td></tr>
</tbody></table>
</field>
<field name="lang">{{ object.lang }}</field>
<field name="auto_delete" eval="True"/>
</record>
</data>
</odoo>