summaryrefslogtreecommitdiff
path: root/addons/website_slides_survey/data/mail_template_data.xml
blob: 0d2ce38801ed17cdd0961c4db56c735fdaaa8762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <data noupdate="1">
        <record id="mail_template_user_input_certification_failed" model="mail.template">
            <field name="name">Certification failed email</field>
            <field name="model_id" ref="model_survey_user_input" />
            <field name="subject">You have failed the course: ${object.slide_partner_id.channel_id.name}</field>
            <field name="partner_to">${object.partner_id.id}</field>
            <field name="body_html" type="html">
<div style="margin: 0px; padding: 0px; font-size: 13px;">
    <p style="margin: 0px; padding: 0px; font-size: 13px;">
        Dear ${object.partner_id.name or 'participant'}<br/><br/>
        Unfortunately, you have failed the certification and are no longer a member of the course: ${object.slide_partner_id.channel_id.name}.<br/><br/>
        Don't hesitate to enroll again!
        <div style="margin: 16px 0px 16px 0px;">
            <a href="${(object.slide_partner_id.channel_id.website_url) | safe}"
                style="background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;">
                Enroll now
            </a>
        </div>
        Thank you for your participation.
    </p>
</div>
            </field>
            <field name="lang">${object.partner_id.lang}</field>
            <field name="auto_delete" eval="True"/>
        </record>
    </data>
</odoo>