odoo18/addons_extensions/project_kudos_plus/data/mail_template.xml

14 lines
640 B
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<odoo>
<record id="mail_template_kudos_notify" model="mail.template">
<field name="name">Kudos Appreciation Email</field>
<field name="model_id" ref="project_kudos_plus.model_project_kudos"/>
<field name="subject">🎉 Great job, {{ object.employee_id.name }}!</field>
<field name="body_html"><![CDATA[
<p>Hi {{ object.employee_id.name }},</p>
<p>Congratulations on completing <b>{{ object.task_id.name }}</b> before the deadline!</p>
<p>Your effort and commitment are greatly appreciated. 👏</p>
<p> Project Kudos+ Team</p>
]]></field>
</record>
</odoo>