File: mail_template_data.xml

package info (click to toggle)
odoo 18.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 878,716 kB
  • sloc: javascript: 927,937; python: 685,670; xml: 388,524; sh: 1,033; sql: 415; makefile: 26
file content (174 lines) | stat: -rw-r--r-- 10,769 bytes parent folder | download
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <data noupdate="1">
         <record id="slide_template_published" model="mail.template">
            <field name="name">Elearning: New Course Content Notification</field>
            <field name="model_id" ref="model_slide_slide"/>
            <field name="subject">New {{ object.slide_category }} published on {{ object.channel_id.name }}</field>
            <field name="description">Sent to attendees when new course is published</field>
            <field name="body_html" type="html">
                <div style="margin: 0px; padding: 0px;">
                    <p style="margin: 0px; padding: 0px; font-size: 13px;">
                        Hello<br/><br/>
                        There is something new in the course <strong t-out="object.channel_id.name or ''">Trees, Wood and Gardens</strong> you are following:<br/><br/>
                        <center><strong t-out="object.name or ''">Trees</strong></center>
                        <t t-if="object.image_1024">
                            <div style="padding: 16px 8px 16px 8px; text-align: center;">
                                <a t-att-href="object.website_share_url">
                                <img t-att-alt="object.name" t-attf-src="{{ ctx.get('base_url') }}/web/image/slide.slide/{{ object.id }}/image_1024" style="height:auto; width:150px; margin: 16px;"/>
                            </a>
                        </div>
                        </t>
                        <div style="padding: 16px 8px 16px 8px; text-align: center;">
                            <a t-att-href="object.website_share_url"
                                style="background-color: #875a7b; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;">View content</a>
                        </div>
                        Enjoy this exclusive content!
                        <t t-if="user.signature">
                            <br />
                            <t t-out="user.signature or ''">--<br/>Mitchell Admin</t>
                        </t>
                    </p>
                </div>
            </field>
            <field name="auto_delete" eval="True"/>
        </record>

        <record id="slide_template_shared" model="mail.template">
            <field name="name">Elearning: Course Share</field>
            <field name="model_id" ref="model_slide_slide"/>
            <field name="subject">{{ user.name }} shared a {{ object.slide_category }} with you!</field>
            <field name="email_from">{{ user.email_formatted }}</field>
            <field name="email_to">{{ ctx.get('email', '') }}</field>
            <field name="description">Sent when attendees share the course by email</field>
            <field name="body_html" type="html">
                <div style="margin: 0px; padding: 0px;">
                    <p style="margin: 0px; padding: 0px; font-size: 13px;">
                        Hello<br/><br/>
                        <t t-out="user.name or ''">Mitchell Admin</t> shared the <t t-out="object.slide_category or ''">document</t> <strong t-out="object.name or ''">Trees</strong> with you!
                        <div style="margin: 16px 8px 16px 8px; text-align: center;">
                            <a t-att-href="(object.website_share_url + '?fullscreen=1') if ctx.get('fullscreen') else object.website_share_url">
                                <img t-att-alt="object.name" t-attf-src="{{ ctx.get('base_url') }}/web/image/slide.slide/{{ object.id }}/image_1024" style="height:auto; width:150px; margin: 16px;"/>
                            </a>
                        </div>
                        <div style="padding: 16px 8px 16px 8px; text-align: center;">
                            <a t-att-href="(object.website_share_url + '?fullscreen=1') if ctx.get('fullscreen') else object.website_share_url"
                                style="background-color: #875a7b; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;">View <strong t-out="object.name or ''">Trees</strong></a>
                        </div>
                        <t t-if="user.signature">
                            <br />
                            <t t-out="user.signature or ''">--<br/>Mitchell Admin</t>
                        </t>
                    </p>
                </div>
            </field>
            <field name="auto_delete" eval="True"/>
        </record>

        <!-- Completed Channel Message -->
        <record id="mail_template_channel_completed" model="mail.template">
            <field name="name">Elearning: Completed Course</field>
            <field name="model_id" ref="model_slide_channel_partner"/>
            <field name="subject">Congratulations! You completed {{ object.channel_id.name }}</field>
            <field name="email_from">{{ (object.channel_id.user_id.email_formatted or object.channel_id.user_id.company_id.catchall_formatted) }}</field>
            <field name="partner_to">{{ object.partner_id.id }}</field>
            <field name="description">Sent to attendees once they've completed the course</field>
            <field name="body_html" type="html">
                <div style="margin: 0px; padding: 0px;">
                    <div style="margin: 0px; padding: 0px; font-size: 13px;">
                        <p style="margin: 0px;">Hello <t t-out="object.partner_id.name or ''">Brandon Freeman</t>,</p><br/>
                        <p><b>Congratulations!</b></p>
                        <p>You've completed the course <b t-out="object.channel_id.name or ''">Basics of Gardening</b></p>
                        <p>Check out the other available courses.</p><br/>

                        <div style="padding: 16px 8px 16px 8px; text-align: center;">
                            <a href="/slides/all" style="background-color: #875a7b; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px;">
                                Explore courses
                            </a>
                        </div>
                        Enjoy this exclusive content!
                        <t t-if="object.channel_id.user_id.signature">
                            <br />
                            <t t-out="object.channel_id.user_id.signature or ''">--<br/>Mitchell Admin</t>
                        </t>
                    </div>
                </div>
            </field>
            <field name="auto_delete" eval="True"/>
            <field name="lang">{{ object.partner_id.lang }}</field>
        </record>

        <record id="mail_template_channel_shared" model="mail.template">
            <field name="name">Channel Shared</field>
            <field name="model_id" ref="model_slide_channel"/>
            <field name="subject">{{ user.name }} shared a Course</field>
            <field name="email_from">{{ user.email_formatted }}</field>
            <field name="body_html" type="html">
                <div style="margin: 0px; padding: 0px;">
                    <p style="margin: 0px; padding: 0px; font-size: 13px;">
                        Hello<br/><br/>
                        <t t-out="user.name or ''">Mitchell Admin</t> shared the <strong t-out="object.name or ''">document</strong> with you!
                        <div style="margin: 16px 8px 16px 8px; text-align: center;">
                            <a t-att-href="object.website_url">
                                <img t-att-alt="object.name"
                                    t-attf-src="{{ ctx.get('base_url') }}/web/image/slide.channel/{{ object.id }}/image_256"
                                    style="height:auto; width:150px; margin: 16px;"/>
                            </a>
                        </div>
                        <div style="padding: 16px 8px 16px 8px; text-align: center;">
                            <a t-att-href="object.website_url"
                                style="background-color: #875a7b; padding: 8px 16px 8px 16px;
                                text-decoration: none; color: #fff; border-radius: 5px;">
                                View <strong t-out="object.name or ''">Document</strong></a>
                        </div>
                        <t t-if="user.signature">
                            <br />
                            <t t-out="user.signature or ''">--<br/>Mitchell Admin</t>
                        </t>
                    </p>
                </div>
            </field>
            <field name="auto_delete" eval="True"/>
        </record>

        <!-- Slide channel invite feature -->
        <record id="mail_template_slide_channel_enroll" model="mail.template">
            <field name="name">Elearning: Add Attendees to Course</field>
            <field name="model_id" ref="model_slide_channel_partner" />
            <field name="subject">You have been invited to join {{ object.channel_id.name }}</field>
            <field name="email_from">{{ user.email_formatted }}</field>
            <field name="use_default_to" eval="True"/>
            <field name="description">Sent to attendees when they are added to a course</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;">
        Hello<br/><br/>
        You have been enrolled to a new course: <t t-out="object.channel_id.name or ''">Basics of Gardening</t>.
    </p>
</div>
            </field>
            <field name="lang">{{ object.partner_id.lang }}</field>
            <field name="auto_delete" eval="True"/>
        </record>

        <!-- Slide channel sharing feature -->
        <record id="mail_template_slide_channel_invite" model="mail.template">
            <field name="name">Elearning: Promotional Course Invitation</field>
            <field name="model_id" ref="model_slide_channel_partner" />
            <field name="subject">You have been invited to check out {{ object.channel_id.name }}</field>
            <field name="email_from">{{ user.email_formatted }}</field>
            <field name="use_default_to" eval="True"/>
            <field name="description">Sent to potential attendees to check out the course.</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;">
        Hello<br/><br/>
        You have been invited to check out this course: <t t-out="object.channel_id.name or ''">Basics of Gardening</t>.
    </p>
</div>
            </field>
            <field name="lang">{{ object.partner_id.lang }}</field>
            <field name="auto_delete" eval="True"/>
        </record>
    </data>
</odoo>