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