summaryrefslogtreecommitdiff
path: root/addons/website_slides_survey/data/mail_template_data.xml
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/website_slides_survey/data/mail_template_data.xml
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/website_slides_survey/data/mail_template_data.xml')
-rw-r--r--addons/website_slides_survey/data/mail_template_data.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/addons/website_slides_survey/data/mail_template_data.xml b/addons/website_slides_survey/data/mail_template_data.xml
new file mode 100644
index 00000000..0d2ce388
--- /dev/null
+++ b/addons/website_slides_survey/data/mail_template_data.xml
@@ -0,0 +1,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>