You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
2.1 KiB
38 lines
2.1 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<data>
|
|
<!--Anniversary Mail Template-->
|
|
<record id="email_template_anniversary_reminder" model="mail.template">
|
|
<field name="name">Anniversary Wishes...!!</field>
|
|
<field name="subject">Happy Work Anniversary {{object.name or ''}}
|
|
!
|
|
</field>
|
|
<field name="model_id" ref="hr.model_hr_employee"/>
|
|
<field name="email_from">{{user.email}}</field>
|
|
<field name="email_to">{{object.work_email}}</field>
|
|
<field name="auto_delete" eval="True"/>
|
|
<field name="body_html" type="html">
|
|
<div style="background-color: #ab669a;width: 100% !important;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;">
|
|
<div>
|
|
<h3 class="v-text-align v-font-size"
|
|
style="margin: 0px; color: #ffffff; line-height: 140%; text-align: center; word-wrap: break-word; font-weight: normal; font-family: 'Dancing Script', cursive; font-size: 18px;">
|
|
<strong>Happy</strong>
|
|
</h3>
|
|
</div>
|
|
<div>
|
|
<h3 class="v-text-align v-font-size"
|
|
style="margin: 0px; color: #ffffff; line-height: 140%; text-align: center; word-wrap: break-word; font-weight: normal; font-family: 'Dancing Script', cursive; font-size: 36px;">
|
|
<strong>Work Anniversary</strong>
|
|
</h3>
|
|
</div>
|
|
<div>
|
|
<h3 class="v-text-align v-font-size"
|
|
style="margin: 0px; color: #ffffff; line-height: 140%; text-align: center; word-wrap: break-word; font-weight: normal; font-family: 'Dancing Script', cursive; font-size: 20px;">
|
|
<span t-field="object.name"/>
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|