@tiledesk/tiledesk-server 2.4.51 → 2.4.53
Sign up to get free protection for your applications and to get access to all the features.
- package/app.js +2 -2
- package/models/faq.js +6 -0
- package/package.json +2 -2
- package/routes/faq.js +66 -23
- package/routes/faq_kb.js +7 -3
- package/routes/openai.js +112 -0
- package/routes/users.js +24 -0
- package/services/emailService.js +33 -0
- package/services/openaiService.js +41 -0
- package/template/email/redirectToDesktopEmail.html +304 -0
- package/template/email/redirectToDesktopEmail_new.html +604 -0
- package/test/faqRoute.js +116 -51
- package/test/openaiRoute.js +134 -0
- package/test/userRoute.js +63 -0
- package/routes/openai_kbs.js +0 -58
- package/test/openaiKbsRoute.js +0 -75
@@ -0,0 +1,604 @@
|
|
1
|
+
<!DOCTYPE html
|
2
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
|
4
|
+
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
|
5
|
+
style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
6
|
+
|
7
|
+
<head>
|
8
|
+
<meta name="viewport" content="width=device-width" />
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
10
|
+
<title>Join Tiledesk from Desktop</title>
|
11
|
+
|
12
|
+
<style type="text/css">
|
13
|
+
img {
|
14
|
+
max-width: 100%;
|
15
|
+
text-align: center !important;
|
16
|
+
}
|
17
|
+
|
18
|
+
img.CToWUd {
|
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;
|
28
|
+
}
|
29
|
+
|
30
|
+
body {
|
31
|
+
-webkit-font-smoothing: antialiased;
|
32
|
+
-webkit-text-size-adjust: none;
|
33
|
+
width: 100% !important;
|
34
|
+
height: 100%;
|
35
|
+
line-height: 1.6em;
|
36
|
+
}
|
37
|
+
|
38
|
+
body {
|
39
|
+
background-color: #f6f6f6;
|
40
|
+
}
|
41
|
+
|
42
|
+
.header-image-container {
|
43
|
+
margin-top: 10px;
|
44
|
+
height: 40px;
|
45
|
+
background-image: url("https://tiledesk.com/wp-content/uploads/2022/08/tiledesk_v1-1.png");
|
46
|
+
background-size: contain;
|
47
|
+
background-position: center;
|
48
|
+
background-repeat: no-repeat;
|
49
|
+
}
|
50
|
+
|
51
|
+
.social-icon-container {
|
52
|
+
border: solid 1px;
|
53
|
+
border-radius: 14px;
|
54
|
+
padding: 4px;
|
55
|
+
margin: 0px 6px;
|
56
|
+
cursor: pointer;
|
57
|
+
}
|
58
|
+
|
59
|
+
@media only screen and (max-width: 640px) {
|
60
|
+
body {
|
61
|
+
padding: 0 !important;
|
62
|
+
}
|
63
|
+
|
64
|
+
h1 {
|
65
|
+
font-weight: 800 !important;
|
66
|
+
margin: 20px 0 5px !important;
|
67
|
+
text-align: center !important;
|
68
|
+
}
|
69
|
+
|
70
|
+
h2 {
|
71
|
+
font-weight: 800 !important;
|
72
|
+
margin: 20px 0 5px !important;
|
73
|
+
}
|
74
|
+
|
75
|
+
h3 {
|
76
|
+
font-weight: 800 !important;
|
77
|
+
margin: 20px 0 5px !important;
|
78
|
+
}
|
79
|
+
|
80
|
+
h4 {
|
81
|
+
font-weight: 800 !important;
|
82
|
+
margin: 20px 0 5px !important;
|
83
|
+
}
|
84
|
+
|
85
|
+
h1 {
|
86
|
+
font-size: 22px !important;
|
87
|
+
}
|
88
|
+
|
89
|
+
h2 {
|
90
|
+
font-size: 18px !important;
|
91
|
+
}
|
92
|
+
|
93
|
+
h3 {
|
94
|
+
font-size: 16px !important;
|
95
|
+
}
|
96
|
+
|
97
|
+
.container {
|
98
|
+
padding: 0 !important;
|
99
|
+
width: 100% !important;
|
100
|
+
}
|
101
|
+
|
102
|
+
.content {
|
103
|
+
padding: 0 !important;
|
104
|
+
}
|
105
|
+
|
106
|
+
.content-wrap {
|
107
|
+
padding: 10px !important;
|
108
|
+
}
|
109
|
+
|
110
|
+
.invoice {
|
111
|
+
width: 100% !important;
|
112
|
+
}
|
113
|
+
}
|
114
|
+
</style>
|
115
|
+
</head>
|
116
|
+
|
117
|
+
<body itemscope itemtype="http://schema.org/EmailMessage"
|
118
|
+
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;"
|
119
|
+
bgcolor="#f6f6f6">
|
120
|
+
|
121
|
+
<table class="body-wrap"
|
122
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; width: 100%; background-color: #f6f6f6; margin: 0;"
|
123
|
+
bgcolor="#f6f6f6">
|
124
|
+
<tr
|
125
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
126
|
+
<td
|
127
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
128
|
+
valign="top"></td>
|
129
|
+
<td class="container" width="600"
|
130
|
+
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;"
|
131
|
+
valign="top">
|
132
|
+
<div class="content"
|
133
|
+
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;">
|
134
|
+
|
135
|
+
<table class="main" width="100%" cellpadding="0" cellspacing="0"
|
136
|
+
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;"
|
137
|
+
bgcolor="#fff">
|
138
|
+
|
139
|
+
|
140
|
+
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
141
|
+
|
142
|
+
<td class="alert alert-warning" 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;"
|
143
|
+
align="center" valign="top">
|
144
|
+
<div>
|
145
|
+
<div class="header-image-container"></div>
|
146
|
+
<h2 style="margin-top: 40px;">Get Ready for a Full Tiledesk Experience!</h2>
|
147
|
+
</div>
|
148
|
+
|
149
|
+
</td>
|
150
|
+
</tr>
|
151
|
+
|
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
|
+
|
161
|
+
<tr
|
162
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
163
|
+
<td class="content-block">
|
164
|
+
<div style="text-align: center;">
|
165
|
+
For the optimal Tiledesk experience, we recommend using it on a desktop device. We've made
|
166
|
+
access easier for you with a personalized link.
|
167
|
+
|
168
|
+
<div style="margin-top: 20px; font-weight: 600;">Access Tiledesk on your desktop now 👇</div>
|
169
|
+
|
170
|
+
<div style="margin-top: 10px;">
|
171
|
+
<a href="{{baseScope.baseUrl}}/#/handle-invitation/{{pendinginvitationid}}/{{projectName}}/{{currentUserFirstname}}/{{currentUserLastname}}"
|
172
|
+
style=" background-color: #ff8574 !important; border: none; color: white; padding: 6px 18px; text-align: center; text-decoration: none; display: inline-block; font-size: 14px; font-weight: 600; letter-spacing: 1px; margin: 4px 2px; cursor: pointer; border-radius: 8px;">
|
173
|
+
Enjoy Tiledesk
|
174
|
+
</a>
|
175
|
+
</div>
|
176
|
+
|
177
|
+
</div>
|
178
|
+
|
179
|
+
<div style="margin-top: 40px;">
|
180
|
+
Alternatively, simply copy and paste this URL into your browser:
|
181
|
+
<div>
|
182
|
+
<a
|
183
|
+
href="{{baseScope.baseUrl}}/#/handle- invitation/{{pendinginvitationid}}/{{projectName}}/{{currentUserFirstname}}/{{currentUserLastname}}">
|
184
|
+
https://panel.tiledesk.com/v3/dashboard/#/login?user=email@user.com
|
185
|
+
</a>
|
186
|
+
</div>
|
187
|
+
</div>
|
188
|
+
|
189
|
+
</td>
|
190
|
+
</tr>
|
191
|
+
|
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
|
+
</td>
|
198
|
+
</tr>
|
199
|
+
</table>
|
200
|
+
</td>
|
201
|
+
</tr>
|
202
|
+
|
203
|
+
<tr>
|
204
|
+
<td>
|
205
|
+
<hr style="width:94%;height:1px;border:none;background-color: #cacaca;">
|
206
|
+
|
207
|
+
<div style="display: flex; padding: 20px 18px; color: #888888; align-items: center;">
|
208
|
+
<span>Powered by </span>
|
209
|
+
<span style="display: flex;"><img
|
210
|
+
src="https://tiledesk.com/wp-content/uploads/2023/05/tiledesk-solo_logo_new_gray.png" width="15"
|
211
|
+
height="15" style="margin-left: 6px; margin-top: 2px;" /></span>
|
212
|
+
<span style="font-weight: bold; margin-left: 2px;">Tiledesk</span>
|
213
|
+
</div>
|
214
|
+
|
215
|
+
</td>
|
216
|
+
</tr>
|
217
|
+
|
218
|
+
|
219
|
+
</table>
|
220
|
+
<div class="footer"
|
221
|
+
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;">
|
222
|
+
<table width="100%"
|
223
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
224
|
+
<tr>
|
225
|
+
<td class="aligncener content-block">
|
226
|
+
<div style="display: flex; flex-direction: column; align-items: center; margin-bottom: 30px;">
|
227
|
+
<div style="margin-bottom: 10px; font-style: italic;">Follow us on:</div>
|
228
|
+
<div style="display: flex; flex-direction: row;">
|
229
|
+
|
230
|
+
<!-- Facebook -->
|
231
|
+
<a href="https://www.facebook.com/tiledesk" target="_blank">
|
232
|
+
<div class="social-icon-container" style="border-color: #3d6ad6;">
|
233
|
+
<img
|
234
|
+
src="https://github.com/Tiledesk/tiledesk-dashboard/assets/45603238/f762a3d7-541a-4b78-ae33-c35cdbe3b083"
|
235
|
+
width="20px" height="20px" />
|
236
|
+
</div>
|
237
|
+
</a>
|
238
|
+
|
239
|
+
<!-- YouTube -->
|
240
|
+
<a href="https://www.youtube.com/@tiledesk" target="_blank">
|
241
|
+
<div class="social-icon-container" style="border-color: #e7332f;">
|
242
|
+
<img
|
243
|
+
src="https://github.com/Tiledesk/tiledesk-dashboard/assets/45603238/5dc5be2d-8bd3-43cf-b1ca-f12a36c01f1a"
|
244
|
+
width="20px" height="20px" />
|
245
|
+
</div>
|
246
|
+
</a>
|
247
|
+
|
248
|
+
<!-- Linkedin -->
|
249
|
+
<a href="https://www.linkedin.com/company/tiledesk/" target="_blank">
|
250
|
+
<div class="social-icon-container" style="border-color: #1f77b5;">
|
251
|
+
<img
|
252
|
+
src="https://github.com/Tiledesk/tiledesk-dashboard/assets/45603238/52d8909f-c847-4b44-8dfb-7cd041e481c3"
|
253
|
+
width="20px" height="20px" />
|
254
|
+
</div>
|
255
|
+
</a>
|
256
|
+
|
257
|
+
<!-- Instagram -->
|
258
|
+
<a href="https://www.instagram.com/tiledesk/" target="_blank">
|
259
|
+
<div class="social-icon-container" style="border-color: #f78881;">
|
260
|
+
<img
|
261
|
+
src="https://github.com/Tiledesk/tiledesk-dashboard/assets/45603238/4c35afe2-277a-4fdd-8e50-0844148216c8"
|
262
|
+
width="20px" height="20px" />
|
263
|
+
</div>
|
264
|
+
</a>
|
265
|
+
|
266
|
+
<!-- Twitter -->
|
267
|
+
<a href="https://twitter.com/tiledesk" target="_blank">
|
268
|
+
<div class="social-icon-container" style="border-color: #2ea1f2;">
|
269
|
+
<img
|
270
|
+
src="https://github.com/Tiledesk/tiledesk-dashboard/assets/45603238/3288635e-50b6-4b2d-bccc-0c9313dd11a5"
|
271
|
+
width="20px" height="20px" />
|
272
|
+
</div>
|
273
|
+
</a>
|
274
|
+
|
275
|
+
</div>
|
276
|
+
|
277
|
+
</div>
|
278
|
+
</td>
|
279
|
+
</tr>
|
280
|
+
<tr
|
281
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
282
|
+
<td class="aligncenter content-block"
|
283
|
+
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;"
|
284
|
+
align="center" valign="top">
|
285
|
+
<span><a href="http://www.tiledesk.com"
|
286
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; color: #999; text-decoration: underline; margin: 0;">
|
287
|
+
Tiledesk.com </a></span>
|
288
|
+
<br><span><a href="%unsubscribe_url%"
|
289
|
+
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>
|
290
|
+
</td>
|
291
|
+
</tr>
|
292
|
+
</table>
|
293
|
+
|
294
|
+
|
295
|
+
</div>
|
296
|
+
</div>
|
297
|
+
</td>
|
298
|
+
<td
|
299
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
300
|
+
valign="top"></td>
|
301
|
+
</tr>
|
302
|
+
</table>
|
303
|
+
|
304
|
+
</body>
|
305
|
+
|
306
|
+
</html>
|
307
|
+
|
308
|
+
|
309
|
+
<!--
|
310
|
+
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
|
311
|
+
style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
312
|
+
|
313
|
+
<head>
|
314
|
+
<meta name="viewport" content="width=device-width" />
|
315
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
316
|
+
<title>Join Tiledesk from Desktop</title>
|
317
|
+
|
318
|
+
<style type="text/css">
|
319
|
+
img {
|
320
|
+
max-width: 100%;
|
321
|
+
text-align: center !important;
|
322
|
+
}
|
323
|
+
|
324
|
+
img.CToWUd {
|
325
|
+
margin-bottom: 16px;
|
326
|
+
max-width: 200px !important;
|
327
|
+
width: 200px !important;
|
328
|
+
min-width: 200px !important;
|
329
|
+
outline: none;
|
330
|
+
text-decoration: none;
|
331
|
+
border: none;
|
332
|
+
height: auto;
|
333
|
+
margin-left: 0px;
|
334
|
+
}
|
335
|
+
|
336
|
+
body {
|
337
|
+
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
338
|
+
box-sizing: border-box;
|
339
|
+
font-size: 14px;
|
340
|
+
-webkit-font-smoothing: antialiased;
|
341
|
+
-webkit-text-size-adjust: none;
|
342
|
+
width: 100% !important;
|
343
|
+
height: 100%;
|
344
|
+
line-height: 1.6em;
|
345
|
+
background-color: #f6f6f6;
|
346
|
+
margin: 0;
|
347
|
+
}
|
348
|
+
|
349
|
+
.content {
|
350
|
+
width: 100%;
|
351
|
+
display: flex;
|
352
|
+
margin-top: 16px;
|
353
|
+
}
|
354
|
+
|
355
|
+
.inner-content {
|
356
|
+
width: 556px;
|
357
|
+
}
|
358
|
+
|
359
|
+
.content-box {
|
360
|
+
width: 100%;
|
361
|
+
background-color: white;
|
362
|
+
border: solid 1px #e9e9e9;
|
363
|
+
border-radius: 6px;
|
364
|
+
}
|
365
|
+
|
366
|
+
.header-image-container {
|
367
|
+
margin-top: 10px;
|
368
|
+
height: 40px;
|
369
|
+
background-image: url("https://tiledesk.com/wp-content/uploads/2022/08/tiledesk_v1-1.png");
|
370
|
+
background-size: contain;
|
371
|
+
background-position: center;
|
372
|
+
background-repeat: no-repeat;
|
373
|
+
}
|
374
|
+
|
375
|
+
.title-container {
|
376
|
+
width: 100%;
|
377
|
+
display: flex;
|
378
|
+
margin-top: 20px;
|
379
|
+
}
|
380
|
+
|
381
|
+
.text-container {
|
382
|
+
padding: 20px 30px;
|
383
|
+
text-align: center;
|
384
|
+
}
|
385
|
+
|
386
|
+
.custom-divider {
|
387
|
+
width: 94%;
|
388
|
+
height: 1px;
|
389
|
+
border: none;
|
390
|
+
background-color: #cacaca;
|
391
|
+
}
|
392
|
+
|
393
|
+
.custom-button {
|
394
|
+
background-color: #ff8574 !important;
|
395
|
+
border: none;
|
396
|
+
color: white !important;
|
397
|
+
padding: 6px 18px;
|
398
|
+
text-align: center;
|
399
|
+
text-decoration: none;
|
400
|
+
display: inline-block;
|
401
|
+
font-size: 14px;
|
402
|
+
font-weight: 600;
|
403
|
+
letter-spacing: 1px;
|
404
|
+
margin: 4px 2px;
|
405
|
+
cursor: pointer;
|
406
|
+
border-radius: 8px;
|
407
|
+
}
|
408
|
+
|
409
|
+
.footer {
|
410
|
+
width: 100%;
|
411
|
+
text-align: center;
|
412
|
+
padding: 12px 0px
|
413
|
+
}
|
414
|
+
|
415
|
+
.powered-by-container {
|
416
|
+
display: flex;
|
417
|
+
padding: 20px 18px;
|
418
|
+
color: #888888;
|
419
|
+
}
|
420
|
+
|
421
|
+
.social-button-container {
|
422
|
+
display: flex;
|
423
|
+
}
|
424
|
+
|
425
|
+
.social-icon-container {
|
426
|
+
border: solid 1px;
|
427
|
+
border-radius: 14px;
|
428
|
+
width: 20px;
|
429
|
+
height: 20px;
|
430
|
+
padding: 4px;
|
431
|
+
margin: 0px 6px;
|
432
|
+
cursor: pointer;
|
433
|
+
}
|
434
|
+
|
435
|
+
.unsubscribe-container {
|
436
|
+
align-items: center;
|
437
|
+
margin-top: 30px;
|
438
|
+
}
|
439
|
+
|
440
|
+
.site-link {
|
441
|
+
font-size: 12px;
|
442
|
+
font-weight: bold;
|
443
|
+
color: #999;
|
444
|
+
}
|
445
|
+
|
446
|
+
.unsubscribe-link {
|
447
|
+
font-size: 12px;
|
448
|
+
color: #999;
|
449
|
+
}
|
450
|
+
|
451
|
+
@media only screen and (max-width: 640px) {
|
452
|
+
body {
|
453
|
+
padding: 0 !important;
|
454
|
+
}
|
455
|
+
|
456
|
+
h1 {
|
457
|
+
font-weight: 800 !important;
|
458
|
+
margin: 20px 0 5px !important;
|
459
|
+
text-align: center !important;
|
460
|
+
}
|
461
|
+
|
462
|
+
h2 {
|
463
|
+
font-weight: 800 !important;
|
464
|
+
margin: 20px 0 5px !important;
|
465
|
+
}
|
466
|
+
|
467
|
+
h3 {
|
468
|
+
font-weight: 800 !important;
|
469
|
+
margin: 20px 0 5px !important;
|
470
|
+
}
|
471
|
+
|
472
|
+
h4 {
|
473
|
+
font-weight: 800 !important;
|
474
|
+
margin: 20px 0 5px !important;
|
475
|
+
}
|
476
|
+
|
477
|
+
h1 {
|
478
|
+
font-size: 22px !important;
|
479
|
+
}
|
480
|
+
|
481
|
+
h2 {
|
482
|
+
font-size: 18px !important;
|
483
|
+
}
|
484
|
+
|
485
|
+
h3 {
|
486
|
+
font-size: 16px !important;
|
487
|
+
}
|
488
|
+
|
489
|
+
.inner-content {
|
490
|
+
width: auto;
|
491
|
+
padding: 0px 8px;
|
492
|
+
}
|
493
|
+
|
494
|
+
.content-box {
|
495
|
+
width: auto;
|
496
|
+
}
|
497
|
+
|
498
|
+
.text-container {
|
499
|
+
padding: 20px 10px;
|
500
|
+
}
|
501
|
+
}
|
502
|
+
</style>
|
503
|
+
</head>
|
504
|
+
|
505
|
+
<body itemscope itemtype="http://schema.org/EmailMessage" bgcolor="#f6f6f6">
|
506
|
+
|
507
|
+
<div class="content" style="flex-direction: column;align-items: center;">
|
508
|
+
<div class="inner-content">
|
509
|
+
|
510
|
+
<div class="content-box">
|
511
|
+
<div class="header-image-container"></div>
|
512
|
+
<div class="title-container" style="justify-content: center;">
|
513
|
+
<h2>Get Ready for a Full Tiledesk Experience!</h2>
|
514
|
+
</div>
|
515
|
+
<div class="text-container">
|
516
|
+
For the optimal Tiledesk experience, we recommend using it on a desktop device. We've made
|
517
|
+
access easier for you with a personalized link.
|
518
|
+
|
519
|
+
<div style="margin-top: 20px; font-weight: 600;">Access Tiledesk on your desktop now 👇</div>
|
520
|
+
<div style="margin-top: 10px;">
|
521
|
+
<a href="{{baseScope.baseUrl}}/{{project_id}}/home?token={{token}}" class="custom-button"
|
522
|
+
style="color: white;">
|
523
|
+
Enjoy Tiledesk
|
524
|
+
</a>
|
525
|
+
</div>
|
526
|
+
|
527
|
+
<div style="margin-top: 40px; text-align: left;">
|
528
|
+
Alternatively, simply copy and paste this URL into your browser:
|
529
|
+
<div>
|
530
|
+
<a href="{{baseScope.baseUrl}}/{{project_id}}/home?token={{token}}">
|
531
|
+
{{baseScope.baseUrl}}/{{project_id}}/home
|
532
|
+
</a>
|
533
|
+
</div>
|
534
|
+
</div>
|
535
|
+
</div>
|
536
|
+
|
537
|
+
<hr class="custom-divider">
|
538
|
+
|
539
|
+
<div class="powered-by-container" style="align-items: center;">
|
540
|
+
<span>Powered by </span>
|
541
|
+
<span style="display: flex;"><img
|
542
|
+
src="https://tiledesk.com/wp-content/uploads/2023/05/tiledesk-solo_logo_new_gray.png" width="15"
|
543
|
+
height="15" style="margin-left: 6px; margin-top: 2px;" /></span>
|
544
|
+
<span style="font-weight: bold; margin-left: 2px;">Tiledesk</span>
|
545
|
+
</div>
|
546
|
+
|
547
|
+
</div>
|
548
|
+
|
549
|
+
<div class="footer">
|
550
|
+
<div style="margin-bottom: 10px; font-style: italic;">Follow us on:</div>
|
551
|
+
<div class="social-button-container" style="flex-direction: row; justify-content: center;">
|
552
|
+
|
553
|
+
<a href="https://www.facebook.com/tiledesk" target="_blank">
|
554
|
+
<div class="social-icon-container" style="border-color: #3d6ad6;">
|
555
|
+
<img
|
556
|
+
src="https://github.com/Tiledesk/tiledesk-dashboard/assets/45603238/f762a3d7-541a-4b78-ae33-c35cdbe3b083"
|
557
|
+
width="20px" height="20px" />
|
558
|
+
</div>
|
559
|
+
</a>
|
560
|
+
|
561
|
+
<a href="https://www.youtube.com/@tiledesk" target="_blank">
|
562
|
+
<div class="social-icon-container" style="border-color: #e7332f;">
|
563
|
+
<img
|
564
|
+
src="https://github.com/Tiledesk/tiledesk-dashboard/assets/45603238/5dc5be2d-8bd3-43cf-b1ca-f12a36c01f1a"
|
565
|
+
width="20px" height="20px" />
|
566
|
+
</div>
|
567
|
+
</a>
|
568
|
+
|
569
|
+
<a href="https://www.linkedin.com/company/tiledesk/" target="_blank">
|
570
|
+
<div class="social-icon-container" style="border-color: #1f77b5;">
|
571
|
+
<img
|
572
|
+
src="https://github.com/Tiledesk/tiledesk-dashboard/assets/45603238/52d8909f-c847-4b44-8dfb-7cd041e481c3"
|
573
|
+
width="20px" height="20px" />
|
574
|
+
</div>
|
575
|
+
</a>
|
576
|
+
|
577
|
+
<a href="https://www.instagram.com/tiledesk/" target="_blank">
|
578
|
+
<div class="social-icon-container" style="border-color: #f78881;">
|
579
|
+
<img
|
580
|
+
src="https://github.com/Tiledesk/tiledesk-dashboard/assets/45603238/4c35afe2-277a-4fdd-8e50-0844148216c8"
|
581
|
+
width="20px" height="20px" />
|
582
|
+
</div>
|
583
|
+
</a>
|
584
|
+
|
585
|
+
<a href="https://twitter.com/tiledesk" target="_blank">
|
586
|
+
<div class="social-icon-container" style="border-color: #2ea1f2;">
|
587
|
+
<img
|
588
|
+
src="https://github.com/Tiledesk/tiledesk-dashboard/assets/45603238/3288635e-50b6-4b2d-bccc-0c9313dd11a5"
|
589
|
+
width="20px" height="20px" />
|
590
|
+
</div>
|
591
|
+
</a>
|
592
|
+
|
593
|
+
</div>
|
594
|
+
|
595
|
+
<div class="unsubscribe-container" style="display: flex;flex-direction: column;">
|
596
|
+
<a href="http://www.tiledesk.com" class="site-link">Tiledesk.com </a>
|
597
|
+
<a href="%unsubscribe_url%" class="unsubscribe-link">Unsubscribe</a>
|
598
|
+
</div>
|
599
|
+
|
600
|
+
</div>
|
601
|
+
</div>
|
602
|
+
</div>
|
603
|
+
|
604
|
+
</body> -->
|