@tiledesk/tiledesk-server 2.4.8 → 2.4.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/event/botEvent.js +12 -2
- package/middleware/has-role.js +6 -0
- package/models/faq_kb.js +4 -0
- package/models/lead.js +5 -0
- package/package.json +2 -2
- package/public/wstest/index.html +5 -41
- package/pubmodules/queue/reconnect.js +24 -0
- package/pubmodules/queue/reconnectFanout.js +17 -0
- package/routes/faq_kb.js +42 -0
- package/routes/lead.js +51 -0
- package/services/trainingService.js +7 -2
- package/template/email/assignedEmailMessage.html +253 -149
- package/template/email/assignedRequest.html +272 -172
- package/template/email/beenInvitedExistingUser.html +213 -130
- package/template/email/beenInvitedNewUser.html +200 -119
- package/template/email/emailDirect.html +207 -114
- package/template/email/newMessage.html +250 -157
- package/template/email/newMessageFollower.html +351 -225
- package/template/email/passwordChanged.html +177 -95
- package/template/email/pooledEmailMessage.html +250 -151
- package/template/email/pooledRequest.html +270 -164
- package/template/email/resetPassword.html +200 -114
- package/template/email/sendTranscript.html +264 -162
- package/template/email/ticket.html +263 -160
- package/template/email/verify.html +208 -126
- package/websocket/webSocketServer.js +70 -3
@@ -1,218 +1,317 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
|
1
|
+
<!DOCTYPE html
|
2
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
|
4
|
+
style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
4
5
|
|
5
6
|
<head>
|
6
|
-
|
7
|
-
|
8
|
-
|
7
|
+
<meta name="viewport" content="width=device-width" />
|
8
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
9
|
+
<title>New message ticket from Tiledesk</title>
|
9
10
|
|
10
|
-
|
11
|
+
<style type="text/css">
|
11
12
|
img {
|
12
|
-
|
13
|
-
|
14
|
-
|
13
|
+
max-width: 100%;
|
14
|
+
margin-left: 16px;
|
15
|
+
text-align: center !important;
|
15
16
|
}
|
17
|
+
|
16
18
|
img.CToWUd {
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
19
|
+
margin-bottom: 16px;
|
20
|
+
max-width: 200px !important;
|
21
|
+
width: 200px !important;
|
22
|
+
min-width: 200px !important;
|
23
|
+
outline: none;
|
24
|
+
text-decoration: none;
|
25
|
+
border: none;
|
26
|
+
height: auto;
|
27
|
+
margin-left: 0px;
|
26
28
|
}
|
29
|
+
|
27
30
|
body {
|
28
|
-
|
31
|
+
-webkit-font-smoothing: antialiased;
|
32
|
+
-webkit-text-size-adjust: none;
|
33
|
+
width: 100% !important;
|
34
|
+
height: 100%;
|
35
|
+
line-height: 1.6em;
|
29
36
|
}
|
37
|
+
|
30
38
|
body {
|
31
|
-
|
39
|
+
background-color: #f6f6f6;
|
32
40
|
}
|
33
41
|
|
34
42
|
@media only screen and (max-width: 640px) {
|
35
|
-
|
43
|
+
body {
|
36
44
|
padding: 0 !important;
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
font-weight: 800 !important;
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
45
|
+
}
|
46
|
+
|
47
|
+
h1 {
|
48
|
+
font-weight: 800 !important;
|
49
|
+
margin: 20px 0 5px !important;
|
50
|
+
text-align: center !important;
|
51
|
+
}
|
52
|
+
|
53
|
+
h2 {
|
54
|
+
font-weight: 800 !important;
|
55
|
+
margin: 20px 0 5px !important;
|
56
|
+
}
|
57
|
+
|
58
|
+
h3 {
|
59
|
+
font-weight: 800 !important;
|
60
|
+
margin: 20px 0 5px !important;
|
61
|
+
}
|
62
|
+
|
63
|
+
h4 {
|
64
|
+
font-weight: 800 !important;
|
65
|
+
margin: 20px 0 5px !important;
|
66
|
+
}
|
67
|
+
|
68
|
+
h1 {
|
52
69
|
font-size: 22px !important;
|
53
|
-
|
54
|
-
|
70
|
+
}
|
71
|
+
|
72
|
+
h2 {
|
55
73
|
font-size: 18px !important;
|
56
|
-
|
57
|
-
|
74
|
+
}
|
75
|
+
|
76
|
+
h3 {
|
58
77
|
font-size: 16px !important;
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
}
|
63
|
-
.content {
|
78
|
+
}
|
79
|
+
|
80
|
+
.container {
|
64
81
|
padding: 0 !important;
|
65
|
-
}
|
66
|
-
.content-wrap {
|
67
|
-
padding: 10px !important;
|
68
|
-
}
|
69
|
-
.invoice {
|
70
82
|
width: 100% !important;
|
71
|
-
|
72
|
-
}
|
73
|
-
</style>
|
74
|
-
</head>
|
75
|
-
|
76
|
-
<body itemscope itemtype="http://schema.org/EmailMessage" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f6f6f6; margin: 0;" bgcolor="#f6f6f6">
|
83
|
+
}
|
77
84
|
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
<!-- <table class="body-wrap" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f6f6f6; margin: 0;" bgcolor="#f6f6f6">
|
83
|
-
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
84
|
-
<td style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;" valign="top"></td>
|
85
|
-
<td class="container" width="600" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;" valign="top">
|
86
|
-
<div class="content" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;"> -->
|
85
|
+
.content {
|
86
|
+
padding: 0 !important;
|
87
|
+
}
|
87
88
|
|
89
|
+
.content-wrap {
|
90
|
+
padding: 10px !important;
|
91
|
+
}
|
88
92
|
|
89
|
-
|
90
|
-
|
91
|
-
|
93
|
+
.invoice {
|
94
|
+
width: 100% !important;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
</style>
|
98
|
+
</head>
|
92
99
|
|
93
|
-
|
100
|
+
<body itemscope itemtype="http://schema.org/EmailMessage"
|
101
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none; width: 100% !important; height: 100%; line-height: 1.6em; background-color: #f6f6f6; margin: 0;"
|
102
|
+
bgcolor="#f6f6f6">
|
103
|
+
|
104
|
+
{{#if baseScope.replyEnabled}}
|
105
|
+
<div>\# Please type your reply above this line \#</div>
|
106
|
+
{{/if}}
|
107
|
+
|
108
|
+
<table class="body-wrap"
|
109
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f6f6f6; margin: 0;"
|
110
|
+
bgcolor="#f6f6f6">
|
111
|
+
<tr
|
112
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
113
|
+
<td
|
114
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
115
|
+
valign="top"></td>
|
116
|
+
<td class="container" width="600"
|
117
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; display: block !important; max-width: 600px !important; clear: both !important; margin: 0 auto;"
|
118
|
+
valign="top">
|
119
|
+
<div class="content"
|
120
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; max-width: 600px; display: block; margin: 0 auto; padding: 20px;">
|
121
|
+
|
122
|
+
|
123
|
+
<table class="main" width="100%" cellpadding="0" cellspacing="0"
|
124
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; border-radius: 3px; background-color: #fff; margin: 0; border: 1px solid #e9e9e9;"
|
125
|
+
bgcolor="#fff">
|
126
|
+
|
127
|
+
<tr
|
128
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
129
|
+
|
130
|
+
<div style="text-align:center">
|
131
|
+
<!--
|
94
132
|
<a href="http://www.tiledesk.com" style="color:#2daae1;font-weight:bold;text-decoration:none;word-break:break-word" target="_blank">
|
95
133
|
<img src="https://tiledesk.com/wp-content/uploads/2023/01/tiledesk_log_email_200.png" class="CToWUd">
|
96
134
|
</a>
|
97
|
-
|
135
|
+
-->
|
136
|
+
</div>
|
98
137
|
</tr>
|
99
138
|
|
100
|
-
<tr
|
139
|
+
<tr
|
140
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
101
141
|
|
102
|
-
|
142
|
+
<td class="alert alert-warning"
|
143
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 16px; vertical-align: top; font-weight: 500; text-align: center; border-radius: 3px 3px 0 0; margin: 0;"
|
144
|
+
align="center" valign="top">
|
103
145
|
<div>
|
104
|
-
|
146
|
+
<h2>New Message from a pooled ticket</h2>
|
105
147
|
</div>
|
106
148
|
|
107
|
-
|
149
|
+
</td>
|
108
150
|
</tr>
|
109
|
-
|
110
|
-
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
111
|
-
<td class="content-wrap" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;" valign="top">
|
112
|
-
<table width="100%" cellpadding="0" cellspacing="0" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
113
|
-
|
114
|
-
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
115
|
-
<td class="content-block" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;" valign="top">
|
116
|
-
{{#ifEquals message.type "text"}}
|
117
|
-
<div style="white-space: pre-wrap;">{{{msgText}}}</div>
|
118
|
-
{{/ifEquals}}
|
119
|
-
{{#ifEquals message.type "image"}}
|
120
|
-
<img src="{{message.metadata.src}}"/>
|
121
|
-
{{/ifEquals}}
|
122
|
-
{{#ifEquals message.type "file"}}
|
123
|
-
<a href="{{message.metadata.src}}">{{message.metadata.name}}</a>
|
124
|
-
{{/ifEquals}}
|
125
151
|
|
126
|
-
|
127
|
-
|
152
|
+
<tr
|
153
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
154
|
+
<td class="content-wrap"
|
155
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 20px;"
|
156
|
+
valign="top">
|
157
|
+
<table width="100%" cellpadding="0" cellspacing="0"
|
158
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
159
|
+
|
160
|
+
<tr
|
161
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
162
|
+
<td class="content-block"
|
163
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
164
|
+
valign="top">
|
165
|
+
{{#ifEquals message.type "text"}}
|
166
|
+
<div style="white-space: pre-wrap;">{{{msgText}}}</div>
|
167
|
+
{{/ifEquals}}
|
168
|
+
{{#ifEquals message.type "image"}}
|
169
|
+
<img src="{{message.metadata.src}}" />
|
170
|
+
{{/ifEquals}}
|
171
|
+
{{#ifEquals message.type "file"}}
|
172
|
+
<a href="{{message.metadata.src}}">{{message.metadata.name}}</a>
|
173
|
+
{{/ifEquals}}
|
128
174
|
|
129
|
-
|
175
|
+
</td>
|
176
|
+
</tr>
|
130
177
|
|
131
178
|
|
132
|
-
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
133
|
-
<td class="content-block" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;" valign="top">
|
134
|
-
Project name : <strong style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">{{project.name}}</strong>
|
135
|
-
</td>
|
136
|
-
</tr>
|
137
|
-
|
138
179
|
|
139
|
-
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
140
|
-
<td class="content-block" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;" valign="top">
|
141
|
-
Department name : <strong style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">{{request.department.name}}</strong>
|
142
|
-
</td>
|
143
|
-
</tr>
|
144
180
|
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
181
|
+
<tr
|
182
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
183
|
+
<td class="content-block"
|
184
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
185
|
+
valign="top">
|
186
|
+
Project name : <strong
|
187
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">{{project.name}}</strong>
|
188
|
+
</td>
|
189
|
+
</tr>
|
150
190
|
|
151
|
-
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
152
|
-
<td class="content-block" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;" valign="top">
|
153
|
-
Contact name : <strong style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">{{request.lead.fullname}}</strong>
|
154
|
-
</td>
|
155
|
-
</tr>
|
156
191
|
|
157
|
-
|
192
|
+
<tr
|
193
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
194
|
+
<td class="content-block"
|
195
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
196
|
+
valign="top">
|
197
|
+
Department name : <strong
|
198
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">{{request.department.name}}</strong>
|
199
|
+
</td>
|
200
|
+
</tr>
|
201
|
+
|
202
|
+
<tr
|
203
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
204
|
+
<td class="content-block"
|
205
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
206
|
+
valign="top">
|
207
|
+
From email : <strong
|
208
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">{{request.lead.email}}</strong>
|
209
|
+
</td>
|
210
|
+
</tr>
|
211
|
+
|
212
|
+
<tr
|
213
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
214
|
+
<td class="content-block"
|
215
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
216
|
+
valign="top">
|
217
|
+
Contact name : <strong
|
218
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">{{request.lead.fullname}}</strong>
|
219
|
+
</td>
|
220
|
+
</tr>
|
221
|
+
|
222
|
+
<!-- <tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
158
223
|
<td class="content-block" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0; padding: 0 0 20px;" valign="top">
|
159
224
|
Assignee : <strong style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;"></strong>
|
160
225
|
</td>
|
161
226
|
</tr> -->
|
162
227
|
|
163
|
-
|
164
|
-
|
165
|
-
|
228
|
+
<tr
|
229
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
230
|
+
<td class="content-block"
|
231
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
232
|
+
valign="top">
|
233
|
+
Channel : <strong
|
234
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
166
235
|
|
167
|
-
|
236
|
+
{{#ifEquals request.channel.name "chat21"}}
|
168
237
|
Chat
|
169
|
-
|
238
|
+
{{else}}
|
170
239
|
{{request.channel.name}}
|
171
|
-
|
240
|
+
{{/ifEquals}}
|
172
241
|
|
173
|
-
|
174
|
-
</strong>
|
175
|
-
</td>
|
176
|
-
</tr>
|
177
242
|
|
178
|
-
|
179
|
-
|
180
|
-
|
243
|
+
</strong>
|
244
|
+
</td>
|
245
|
+
</tr>
|
246
|
+
|
247
|
+
<tr
|
248
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
249
|
+
<td class="content-block"
|
250
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
251
|
+
valign="top">
|
252
|
+
<a
|
253
|
+
href="{{baseScope.baseUrl}}/#/project/{{request.id_project}}/wsrequest/{{request.request_id}}/messages">Open
|
254
|
+
the dashboard</a>.
|
181
255
|
|
182
|
-
|
183
|
-
|
184
|
-
|
256
|
+
</td>
|
257
|
+
</tr>
|
258
|
+
|
259
|
+
<tr
|
260
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
261
|
+
<td class="content-block"
|
262
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
263
|
+
valign="top">
|
264
|
+
</td>
|
265
|
+
</tr>
|
185
266
|
|
186
|
-
|
267
|
+
<tr>
|
268
|
+
<td>
|
269
|
+
<hr style="width:94%;height:1px;border:none;background-color: #cacaca;">
|
270
|
+
|
271
|
+
<div style="display: flex; padding: 20px 18px; color: #888888; align-items: center;">
|
272
|
+
<span>Powered by </span>
|
273
|
+
<span style="display: flex;"><img
|
274
|
+
src="https://tiledesk.com/wp-content/uploads/2023/05/tiledesk-solo_logo_new_gray.png"
|
275
|
+
width="15" height="15" style="margin-left: 6px;" /></span>
|
276
|
+
<span style="font-weight: bold; margin-left: 2px;">Tiledesk</span>
|
277
|
+
</div>
|
187
278
|
|
188
|
-
|
189
|
-
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
190
|
-
<td class="content-block" style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;" valign="top">
|
191
279
|
</td>
|
192
|
-
|
280
|
+
</tr>
|
281
|
+
|
193
282
|
</table>
|
194
|
-
|
283
|
+
</td>
|
195
284
|
</tr>
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
285
|
+
</table>
|
286
|
+
<div class="footer"
|
287
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; clear: both; color: #999; margin: 0; padding: 20px;">
|
288
|
+
<table width="100%"
|
289
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
290
|
+
<tr
|
291
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
292
|
+
<td class="aligncenter content-block"
|
293
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; vertical-align: top; color: #999; text-align: center; margin: 0;"
|
294
|
+
align="center" valign="top">
|
295
|
+
<span><a href="http://www.tiledesk.com"
|
296
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; color: #999; text-decoration: underline; margin: 0;">
|
297
|
+
Tiledesk.com </a></span>
|
298
|
+
<br><span><a href="%unsubscribe_url%"
|
299
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; color: #999; text-decoration: underline; margin: 0;">Unsubscribe</a></span>
|
203
300
|
</td>
|
204
|
-
|
301
|
+
</tr>
|
205
302
|
</table>
|
206
303
|
|
207
304
|
|
208
305
|
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
306
|
+
</div>
|
307
|
+
</td>
|
308
|
+
<td
|
309
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
310
|
+
valign="top"></td>
|
213
311
|
</tr>
|
214
|
-
|
312
|
+
</table>
|
215
313
|
|
216
314
|
|
217
315
|
</body>
|
316
|
+
|
218
317
|
</html>
|