@tiledesk/tiledesk-server 2.4.7 → 2.4.9
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/.circleci/config.yml +1 -1
- package/app.js +11 -0
- package/config/email.js +1 -1
- package/event/botEvent.js +12 -2
- package/middleware/has-role.js +6 -0
- package/middleware/passport.js +1 -0
- package/models/auth.js +9 -1
- package/models/faq_kb.js +4 -0
- package/models/lead.js +5 -0
- package/models/user.js +3 -0
- package/package.json +3 -3
- package/public/wstest/index.html +5 -41
- package/pubmodules/apps/listener.js +3 -3
- package/pubmodules/queue/reconnect.js +24 -0
- package/pubmodules/queue/reconnectFanout.js +17 -0
- package/routes/auth.js +44 -3
- package/routes/faq_kb.js +42 -0
- package/routes/images.js +3 -1
- package/routes/lead.js +51 -0
- package/routes/project.js +12 -0
- package/routes/users.js +2 -0
- package/services/emailService.js +2 -2
- package/services/trainingService.js +7 -2
- package/template/email/assignedEmailMessage.html +253 -149
- package/template/email/assignedRequest.html +273 -173
- 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 +178 -96
- package/template/email/pooledEmailMessage.html +250 -151
- package/template/email/pooledRequest.html +270 -164
- package/template/email/resetPassword.html +201 -115
- package/template/email/sendTranscript.html +299 -197
- package/template/email/ticket.html +263 -160
- package/template/email/verify.html +208 -126
- package/websocket/webSocketServer.js +70 -3
@@ -1,193 +1,286 @@
|
|
1
|
-
<!DOCTYPE html
|
2
|
-
|
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;">
|
3
5
|
|
4
6
|
<head>
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
7
|
+
<meta name="viewport" content="width=device-width" />
|
8
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
9
|
+
<title>New message from Tiledesk</title>
|
10
|
+
|
11
|
+
<style type="text/css">
|
12
|
+
img {
|
13
|
+
max-width: 100%;
|
14
|
+
margin-left: 16px;
|
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
|
+
@media only screen and (max-width: 640px) {
|
43
|
+
body {
|
44
|
+
padding: 0 !important;
|
14
45
|
}
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
outline: none;
|
21
|
-
text-decoration: none;
|
22
|
-
border: none;
|
23
|
-
height: auto;
|
24
|
-
margin-left: 0px;
|
46
|
+
|
47
|
+
h1 {
|
48
|
+
font-weight: 800 !important;
|
49
|
+
margin: 20px 0 5px !important;
|
50
|
+
text-align: center !important;
|
25
51
|
}
|
26
|
-
|
27
|
-
|
52
|
+
|
53
|
+
h2 {
|
54
|
+
font-weight: 800 !important;
|
55
|
+
margin: 20px 0 5px !important;
|
28
56
|
}
|
29
|
-
|
30
|
-
|
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 {
|
69
|
+
font-size: 22px !important;
|
31
70
|
}
|
32
71
|
|
33
|
-
|
34
|
-
|
35
|
-
padding: 0 !important;
|
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
|
-
}
|
72
|
+
h2 {
|
73
|
+
font-size: 18px !important;
|
71
74
|
}
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
75
|
+
|
76
|
+
h3 {
|
77
|
+
font-size: 16px !important;
|
78
|
+
}
|
79
|
+
|
80
|
+
.container {
|
81
|
+
padding: 0 !important;
|
82
|
+
width: 100% !important;
|
83
|
+
}
|
84
|
+
|
85
|
+
.content {
|
86
|
+
padding: 0 !important;
|
87
|
+
}
|
88
|
+
|
89
|
+
.content-wrap {
|
90
|
+
padding: 10px !important;
|
91
|
+
}
|
92
|
+
|
93
|
+
.invoice {
|
94
|
+
width: 100% !important;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
</style>
|
98
|
+
</head>
|
99
|
+
|
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
|
+
<table class="main" width="100%" cellpadding="0" cellspacing="0"
|
123
|
+
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;"
|
124
|
+
bgcolor="#fff">
|
125
|
+
|
126
|
+
<tr
|
127
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
128
|
+
|
129
|
+
<div style="text-align:center">
|
130
|
+
<!--
|
131
|
+
<a href="http://www.tiledesk.com"
|
132
|
+
style="color:#2daae1;font-weight:bold;text-decoration:none;word-break:break-word" target="_blank">
|
133
|
+
<img src="https://tiledesk.com/wp-content/uploads/2023/01/tiledesk_log_email_200.png" class="CToWUd">
|
134
|
+
</a>
|
135
|
+
-->
|
136
|
+
</div>
|
96
137
|
</tr>
|
97
138
|
|
98
|
-
<tr
|
139
|
+
<tr
|
140
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
99
141
|
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
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">
|
145
|
+
<div>
|
146
|
+
<h2>New Message</h2>
|
147
|
+
</div>
|
104
148
|
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
109
|
-
<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">
|
110
|
-
<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;">
|
111
|
-
|
112
|
-
|
113
|
-
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
114
|
-
<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">
|
115
|
-
{{#ifEquals message.type "text"}}
|
116
|
-
<div style="white-space: pre-wrap;">{{{msgText}}}</div>
|
117
|
-
{{/ifEquals}}
|
118
|
-
{{#ifEquals message.type "image"}}
|
119
|
-
<img src="{{message.metadata.src}}"/>
|
120
|
-
{{/ifEquals}}
|
121
|
-
{{#ifEquals message.type "file"}}
|
122
|
-
<a href="{{message.metadata.src}}">{{message.metadata.name}}</a>
|
123
|
-
{{/ifEquals}}
|
149
|
+
</td>
|
150
|
+
</tr>
|
124
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;">
|
125
159
|
|
126
|
-
</td>
|
127
|
-
</tr>
|
128
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
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
165
|
+
valign="top">
|
166
|
+
{{#ifEquals message.type "text"}}
|
167
|
+
<div style="white-space: pre-wrap;">{{{msgText}}}</div>
|
168
|
+
{{/ifEquals}}
|
169
|
+
{{#ifEquals message.type "image"}}
|
170
|
+
<img src="{{message.metadata.src}}" />
|
171
|
+
{{/ifEquals}}
|
172
|
+
{{#ifEquals message.type "file"}}
|
173
|
+
<a href="{{message.metadata.src}}">{{message.metadata.name}}</a>
|
174
|
+
{{/ifEquals}}
|
129
175
|
|
130
|
-
|
131
176
|
|
132
|
-
|
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
|
-
<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
|
-
Agent name : <strong style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">{{message.senderFullname}}</strong>
|
141
|
-
</td>
|
177
|
+
</td>
|
142
178
|
</tr>
|
143
179
|
|
144
180
|
|
145
|
-
|
181
|
+
|
182
|
+
|
183
|
+
<tr
|
184
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
185
|
+
<td class="content-block"
|
186
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
187
|
+
valign="top">
|
188
|
+
Project name : <strong
|
189
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">{{project.name}}</strong>
|
190
|
+
</td>
|
191
|
+
</tr>
|
192
|
+
|
193
|
+
<tr
|
194
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
195
|
+
<td class="content-block"
|
196
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
197
|
+
valign="top">
|
198
|
+
Agent name : <strong
|
199
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">{{message.senderFullname}}</strong>
|
200
|
+
</td>
|
201
|
+
</tr>
|
202
|
+
|
203
|
+
|
204
|
+
<!-- <tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
146
205
|
<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">
|
147
206
|
Source page : <strong style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">{{message.request.sourcePage}}</strong>
|
148
207
|
</td>
|
149
208
|
</tr> -->
|
150
209
|
|
151
|
-
|
152
210
|
|
153
|
-
|
154
211
|
|
155
|
-
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
156
|
-
<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">
|
157
|
-
Click <a href="{{seamlessPage}}{{tokenQueryString}}">here</a> to continue the conversation by chat.
|
158
|
-
</td>
|
159
|
-
</tr>
|
160
|
-
|
161
212
|
|
162
|
-
|
163
213
|
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
214
|
+
<tr
|
215
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
216
|
+
<td class="content-block"
|
217
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
218
|
+
valign="top">
|
219
|
+
Click <a href="{{seamlessPage}}{{tokenQueryString}}">here</a> to continue the conversation by
|
220
|
+
chat.
|
221
|
+
</td>
|
222
|
+
</tr>
|
223
|
+
|
224
|
+
|
225
|
+
|
226
|
+
|
227
|
+
|
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
|
+
</td>
|
234
|
+
</tr>
|
235
|
+
</table>
|
236
|
+
</td>
|
237
|
+
</tr>
|
238
|
+
|
239
|
+
<tr>
|
240
|
+
<td>
|
241
|
+
<hr style="width:94%;height:1px;border:none;background-color: #cacaca;">
|
242
|
+
|
243
|
+
<div style="display: flex; padding: 20px 18px; color: #888888;">
|
244
|
+
<span>Powered by </span>
|
245
|
+
<span style="display: flex;"><img
|
246
|
+
src="https://panel.tiledesk.com/v3/dashboard/assets/img/logos/tiledesk-solo_logo_new_gray.svg"
|
247
|
+
width="18" height="auto" style="margin-left: 6px;" /></span>
|
248
|
+
<span style="font-weight: bold; margin-left: 2px;">Tiledesk</span>
|
249
|
+
</div>
|
250
|
+
|
251
|
+
</td>
|
252
|
+
</tr>
|
253
|
+
|
254
|
+
|
255
|
+
</table>
|
256
|
+
<div class="footer"
|
257
|
+
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;">
|
258
|
+
<table width="100%"
|
259
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
260
|
+
<tr
|
261
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
262
|
+
<td class="aligncenter content-block"
|
263
|
+
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;"
|
264
|
+
align="center" valign="top">
|
265
|
+
<span><a href="http://www.tiledesk.com"
|
266
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 12px; color: #999; text-decoration: underline; margin: 0;">
|
267
|
+
Tiledesk.com </a></span>
|
268
|
+
<br><span><a href="%unsubscribe_url%"
|
269
|
+
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>
|
170
270
|
</td>
|
171
271
|
</tr>
|
172
272
|
</table>
|
173
|
-
|
174
|
-
|
175
|
-
<tr style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; margin: 0;">
|
176
|
-
<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">
|
177
|
-
<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>
|
178
|
-
<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>
|
179
|
-
</td>
|
180
|
-
</tr>
|
181
|
-
</table>
|
182
|
-
|
183
|
-
|
184
|
-
<!-- </div>
|
273
|
+
|
274
|
+
|
185
275
|
</div>
|
186
|
-
</
|
187
|
-
|
188
|
-
|
189
|
-
|
276
|
+
</div>
|
277
|
+
</td>
|
278
|
+
<td
|
279
|
+
style="font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; box-sizing: border-box; font-size: 14px; vertical-align: top; margin: 0;"
|
280
|
+
valign="top"></td>
|
281
|
+
</tr>
|
282
|
+
</table>
|
190
283
|
|
284
|
+
</body>
|
191
285
|
|
192
|
-
</body>
|
193
286
|
</html>
|