tango-app-api-payment-subscription 3.0.14-dev → 3.0.14
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/index.js +2 -1
- package/package.json +8 -3
- package/src/controllers/paymentSubscription.controllers.js +1616 -123
- package/src/docs/payment.docs.js +673 -0
- package/src/dtos/validation.dtos.js +197 -100
- package/src/hbs/invoicePdf.hbs +1577 -0
- package/src/hbs/invoicePdfold.hbs +198 -0
- package/src/hbs/invoiceRaised.hbs +654 -0
- package/src/hbs/revisedPriceEmail.hbs +290 -0
- package/src/hbs/trialCreditNoteEmail.hbs +603 -0
- package/src/hbs/trialExpiredEmail.hbs +309 -0
- package/src/hbs/trialExtentionEmail.hbs +194 -0
- package/src/hbs/trialInitiateEmail.hbs +10 -10
- package/src/hbs/trialReminderEmail.hbs +315 -0
- package/src/hbs/trialSubscriptionEmail.hbs +197 -0
- package/src/hbs/trialUnsubscribeEmail.hbs +188 -0
- package/src/routes/paymentSubscription.routes.js +151 -48
- package/src/services/basePrice.service.js +4 -0
- package/src/services/clientRequest.service.js +8 -0
- package/src/services/dailyPrice.service.js +22 -0
- package/src/services/invoice.service.js +12 -1
- package/src/services/user.service.js +8 -0
- package/src/utils/validations/client.validation.js +1 -2
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
|
|
6
|
+
<meta charset="utf-8">
|
|
7
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
8
|
+
<title>Batch Upload</title>
|
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
10
|
+
<style type="text/css">
|
|
11
|
+
@media screen {
|
|
12
|
+
@font-face {
|
|
13
|
+
font-family: 'Inter';
|
|
14
|
+
font-style: normal;
|
|
15
|
+
font-weight: 400;
|
|
16
|
+
font-display: swap;
|
|
17
|
+
src: local("Inter"), local("Inter-Regular"), url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZJhiI2B.woff2) format('woff2');
|
|
18
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
body {
|
|
23
|
+
font-family: "Inter", sans-serif !important;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
body,
|
|
27
|
+
table,
|
|
28
|
+
td,
|
|
29
|
+
a {
|
|
30
|
+
-ms-text-size-adjust: 100%;
|
|
31
|
+
-webkit-text-size-adjust: 100%;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
table,
|
|
35
|
+
td {
|
|
36
|
+
mso-table-rspace: 0pt;
|
|
37
|
+
mso-table-lspace: 0pt;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
img {
|
|
41
|
+
-ms-interpolation-mode: bicubic;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
a[x-apple-data-detectors] {
|
|
45
|
+
font-family: "inherit" !important;
|
|
46
|
+
font-size: inherit !important;
|
|
47
|
+
font-weight: inherit !important;
|
|
48
|
+
line-height: inherit !important;
|
|
49
|
+
color: inherit !important;
|
|
50
|
+
text-decoration: none !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
div[style*="margin: 16px 0;"
|
|
55
|
+
|
|
56
|
+
] {
|
|
57
|
+
margin: 0 !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
body {
|
|
61
|
+
width: 100% !important;
|
|
62
|
+
height: 100% !important;
|
|
63
|
+
padding: 0 !important;
|
|
64
|
+
margin: 0 !important;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
table {
|
|
69
|
+
border-collapse: collapse !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
a {
|
|
73
|
+
color: #1a82e2;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
img {
|
|
77
|
+
height: auto;
|
|
78
|
+
line-height: 100%;
|
|
79
|
+
text-decoration: none;
|
|
80
|
+
border: 0;
|
|
81
|
+
outline: none;
|
|
82
|
+
}
|
|
83
|
+
</style>
|
|
84
|
+
|
|
85
|
+
</head>
|
|
86
|
+
|
|
87
|
+
<body style="background-color: #dbe5ea;">
|
|
88
|
+
|
|
89
|
+
<div class="preheader"
|
|
90
|
+
style="display: none; max-width: 0; max-height: 0; overflow: hidden; font-size: 1px; line-height: 1px; color: #fff; opacity: 0;">
|
|
91
|
+
Email Summary (Hidden)
|
|
92
|
+
</div>
|
|
93
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="padding-left:10px;padding-right:10px">
|
|
94
|
+
<tr>
|
|
95
|
+
<td bgcolor="#dbe5ea" style="padding:32px 10px 0 10px">
|
|
96
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 680px;" align="center">
|
|
97
|
+
<tr>
|
|
98
|
+
<td class="o_bg-white o_px-md o_py-md o_sans o_text"
|
|
99
|
+
style="margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;background-color: #ffffff;padding-left: 18px;padding-right: 24px;padding-top: 24px;padding-bottom: 24px;">
|
|
100
|
+
<p style="margin-top: 0px;margin-bottom: 0px;"><a class="o_text-white"
|
|
101
|
+
href="https://tangoeye.ai/"
|
|
102
|
+
style="text-decoration: none;outline: none;color: #ffffff;"><img
|
|
103
|
+
src="https://devtangoretail-api.tangoeye.ai/logo.png"
|
|
104
|
+
width="200" height="100" alt="SimpleApp"
|
|
105
|
+
style="-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 100%;height: auto;outline: none;text-decoration: none;"></a>
|
|
106
|
+
</p>
|
|
107
|
+
</td>
|
|
108
|
+
</tr>
|
|
109
|
+
<tr>
|
|
110
|
+
<td align="left" bgcolor="#ffffff"
|
|
111
|
+
style="padding-left: 30px;padding-right: 24px; font-size: 14px; line-height: 24px;">
|
|
112
|
+
<p class="o_heading o_mb-xxs"
|
|
113
|
+
style="width: 624px;height: 0px;border: 1px solid #CBD5E1;flex: none;order: 1;flex-grow: 0;">
|
|
114
|
+
</p>
|
|
115
|
+
</td>
|
|
116
|
+
</tr>
|
|
117
|
+
<tr>
|
|
118
|
+
<td class="o_bg-white o_px-md o_py-xl o_xs-py-md"
|
|
119
|
+
style="background-color: #ffffff;padding-left: 30px;padding-right: 24px;padding-bottom: 10px;">
|
|
120
|
+
<div class="o_col-6s o_sans o_text-md o_text-light o_center"
|
|
121
|
+
style="margin-top: 0px;margin-bottom: 0px;font-size: 24px;line-height: 28px;color: #82899a;">
|
|
122
|
+
<span class="o_heading o_text-dark o_mb-xxs"
|
|
123
|
+
style="font-weight: 700;margin-top: 0px;margin-bottom: 4px;color: #121A26;line-height: 39px;">
|
|
124
|
+
Unlock Premium Features - Your {{data.product}} Trial Has Ended</span>
|
|
125
|
+
</div>
|
|
126
|
+
</td>
|
|
127
|
+
</tr>
|
|
128
|
+
</table>
|
|
129
|
+
</td>
|
|
130
|
+
</tr>
|
|
131
|
+
<tr>
|
|
132
|
+
<td align="center" bgcolor="#dbe5ea" style="padding:0 10px 0 10px">
|
|
133
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 680px;">
|
|
134
|
+
<tr>
|
|
135
|
+
<td align="left" bgcolor="#ffffff"
|
|
136
|
+
style="padding-left: 30px; padding-right: 24px;padding-top:10px;padding-bottom: 10px;font-weight: 400;font-size: 16px;line-height: 150%;color:#384860">
|
|
137
|
+
<p style="margin: 0;">Dear {{data.userName}},</p>
|
|
138
|
+
</td>
|
|
139
|
+
</tr>
|
|
140
|
+
<tr>
|
|
141
|
+
<td align="left" bgcolor="#ffffff"
|
|
142
|
+
style="padding-left: 30px;padding-right: 24px;padding-top:10px; font-size: 16px; line-height: 150%;font-weight:400;color:#384860">
|
|
143
|
+
<p style="margin: 0;">We hope you enjoyed your trial of {{data.product}} Module. As your trial period has ended, we invite you to upgrade to a premium subscription for continued access to exclusive features and benefits. Don't miss out on the full experience!
|
|
144
|
+
</p>
|
|
145
|
+
</td>
|
|
146
|
+
</tr>
|
|
147
|
+
</table>
|
|
148
|
+
</td>
|
|
149
|
+
</tr>
|
|
150
|
+
<tr>
|
|
151
|
+
<td align="center" bgcolor="#dbe5ea" style="padding:0 10px 0 10px">
|
|
152
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 680px;">
|
|
153
|
+
<tr>
|
|
154
|
+
<td align="left" bgcolor="#ffffff">
|
|
155
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
|
156
|
+
<tr width="100">
|
|
157
|
+
<td bgcolor="#ffffff" style="padding:30px 20px 20px 30px;">
|
|
158
|
+
<div style="width:100% !important;background-color:#E2E8F0;">
|
|
159
|
+
<table border="0" cellpadding="0" cellspacing="0">
|
|
160
|
+
<tr>
|
|
161
|
+
<td class="o_bg-white o_px-md o_py-xl o_xs-py-md"
|
|
162
|
+
style="background-color: #E2E8F0;padding:20px 24px 10px 25px;">
|
|
163
|
+
<div class="o_col-6s o_sans o_text-md o_text-light o_center"
|
|
164
|
+
style="margin-top: 0px;margin-bottom: 0px;font-size: 18px;line-height: 28px;">
|
|
165
|
+
<span class="o_heading o_text-dark o_mb-xxs"
|
|
166
|
+
style="font-weight: 700;margin-top: 0px;margin-bottom: 4px;color: #121A26;line-height: 150%;">
|
|
167
|
+
Premium Plan Features:
|
|
168
|
+
</span>
|
|
169
|
+
</div>
|
|
170
|
+
</td>
|
|
171
|
+
</tr>
|
|
172
|
+
<tr>
|
|
173
|
+
<td class="o_bg-white o_px-md o_py-xl o_xs-py-md" align="center"
|
|
174
|
+
bgcolor="#E2E8F0"
|
|
175
|
+
style="background-color: #E2E8F0;padding:10px 24px 10px 25px;">
|
|
176
|
+
<div style="display:flex">
|
|
177
|
+
<div style="display:flex;width:285px;">
|
|
178
|
+
<div>
|
|
179
|
+
<img src="https://devtangoretail-api.tangoeye.ai/Checkbox.png" alt="SimpleApp"
|
|
180
|
+
style="-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 150%;height: auto;outline: none;text-decoration: none;width: 25px;height:25px;">
|
|
181
|
+
</div>
|
|
182
|
+
<div style="margin:1px 0 0 10px">
|
|
183
|
+
<span
|
|
184
|
+
style="color:#121A26;font-size:16px;font-weight:500">Unlimited Store Onboarding</span>
|
|
185
|
+
</div>
|
|
186
|
+
</div>
|
|
187
|
+
<div style="display:flex;width:285px;">
|
|
188
|
+
<div>
|
|
189
|
+
<img src="https://devtangoretail-api.tangoeye.ai/Checkbox.png" alt="SimpleApp"
|
|
190
|
+
style="-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 150%;height: auto;outline: none;text-decoration: none;width: 25px;height:25px;">
|
|
191
|
+
</div>
|
|
192
|
+
<div style="margin:1px 0 0 10px">
|
|
193
|
+
<span
|
|
194
|
+
style="color:#121A26;font-size:16px;font-weight:500">Extended Usage of the Tango Suite</span>
|
|
195
|
+
</div>
|
|
196
|
+
</div>
|
|
197
|
+
</div>
|
|
198
|
+
</td>
|
|
199
|
+
</tr>
|
|
200
|
+
<tr>
|
|
201
|
+
<td class="o_bg-white o_px-md o_py-xl o_xs-py-md" align="center"
|
|
202
|
+
bgcolor="#E2E8F0"
|
|
203
|
+
style="background-color: #E2E8F0;padding:10px 24px 30px 25px;">
|
|
204
|
+
<div style="display:flex">
|
|
205
|
+
<div style="display:flex;width:285px;">
|
|
206
|
+
<div>
|
|
207
|
+
<img src="https://devtangoretail-api.tangoeye.ai/Checkbox.png" alt="SimpleApp"
|
|
208
|
+
style="-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 150%;height: auto;outline: none;text-decoration: none;width: 25px;height:25px;">
|
|
209
|
+
</div>
|
|
210
|
+
<div style="margin:1px 0 0 10px">
|
|
211
|
+
<span
|
|
212
|
+
style="color:#121A26;font-size:16px;font-weight:500">Integration with POS</span>
|
|
213
|
+
</div>
|
|
214
|
+
</div>
|
|
215
|
+
<div style="display:flex;width:285px;">
|
|
216
|
+
<div>
|
|
217
|
+
<img src="https://devtangoretail-api.tangoeye.ai/Checkbox.png" alt="SimpleApp"
|
|
218
|
+
style="-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 150%;height: auto;outline: none;text-decoration: none;width: 25px;height:25px;">
|
|
219
|
+
</div>
|
|
220
|
+
<div style="margin:1px 0 0 10px">
|
|
221
|
+
<span
|
|
222
|
+
style="color:#121A26;font-size:16px;font-weight:500">Dedicated Customer Support Executive</span>
|
|
223
|
+
</div>
|
|
224
|
+
</div>
|
|
225
|
+
</div>
|
|
226
|
+
</td>
|
|
227
|
+
</tr>
|
|
228
|
+
</table>
|
|
229
|
+
</div>
|
|
230
|
+
</td>
|
|
231
|
+
</tr>
|
|
232
|
+
</table>
|
|
233
|
+
</td>
|
|
234
|
+
</tr>
|
|
235
|
+
</table>
|
|
236
|
+
</td>
|
|
237
|
+
</tr>
|
|
238
|
+
<tr>
|
|
239
|
+
<td align="center" bgcolor="#dbe5ea" style="padding:0 10px 0 10px">
|
|
240
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 680px;">
|
|
241
|
+
<tr>
|
|
242
|
+
<td bgcolor="#ffffff" style="padding: 20px;padding-top:10px;padding-left:30px;">
|
|
243
|
+
<table border="0" cellpadding="0" cellspacing="0">
|
|
244
|
+
<tr>
|
|
245
|
+
<td align="center" bgcolor="#00A3FF" style="border-radius: 6px;height:50px;">
|
|
246
|
+
<a href="{{data.domain}}" target="_blank"
|
|
247
|
+
style="display: inline-block; padding: 16px 36px; font-size: 16px; color: #ffffff; text-decoration: none; border-radius: 6px;">Upgrade Now
|
|
248
|
+
</a>
|
|
249
|
+
</td>
|
|
250
|
+
</tr>
|
|
251
|
+
</table>
|
|
252
|
+
</td>
|
|
253
|
+
</tr>
|
|
254
|
+
</table>
|
|
255
|
+
</td>
|
|
256
|
+
</tr>
|
|
257
|
+
<tr>
|
|
258
|
+
<td align="center" bgcolor="#dbe5ea" style="padding:0 10px 0 10px">
|
|
259
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 680px;">
|
|
260
|
+
<tr>
|
|
261
|
+
<td align="left" bgcolor="#ffffff"
|
|
262
|
+
style="padding-left: 30px; padding-right: 24px;padding-bottom: 20px;font-weight: 400;font-size: 16px;line-height: 150%;color:#384860">
|
|
263
|
+
<p style="margin: 0;">Should you have any questions or require assistance, our support team is ready to help. Thank you for considering [Your Product/Service].</p>
|
|
264
|
+
</td>
|
|
265
|
+
</tr>
|
|
266
|
+
<tr>
|
|
267
|
+
<td align="left" bgcolor="#ffffff"
|
|
268
|
+
style="padding-left: 30px; padding-right: 24px;padding-bottom: 10px;font-weight: 400;font-size: 16px;line-height: 150%;color:#384860">
|
|
269
|
+
<p style="margin: 0;">Best, <br> Team Tango</p>
|
|
270
|
+
</td>
|
|
271
|
+
|
|
272
|
+
</tr>
|
|
273
|
+
|
|
274
|
+
</table>
|
|
275
|
+
</td>
|
|
276
|
+
</tr>
|
|
277
|
+
|
|
278
|
+
<tr>
|
|
279
|
+
<td align="center" bgcolor="#dbe5ea" style="padding:0 10px 32px 10px">
|
|
280
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 680px;">
|
|
281
|
+
<tr>
|
|
282
|
+
<td class="o_bg-white o_px-md o_py-xl o_xs-py-md"
|
|
283
|
+
style="background-color: #ffffff;padding-left: 30px;padding-right: 24px;padding-top:15px">
|
|
284
|
+
<div class="o_col-6s o_sans o_text-md o_text-light o_center"
|
|
285
|
+
style="margin-top: 0px;margin-bottom: 0px;font-size: 12px;color: #202B3C;font-style: normal;font-weight: 400;font-size: 12px;line-height: 150%;">
|
|
286
|
+
<p>
|
|
287
|
+
If you'd rather not receive this kind of email, Don’t want any more emails from TangoEye? <a style="color: var(--Primary-Base, #00A3FF); text-decoration-line: underline; letter-spacing: 0.2px;">Unsubscribe.</a></p>
|
|
288
|
+
</div>
|
|
289
|
+
</td>
|
|
290
|
+
</tr>
|
|
291
|
+
<tr>
|
|
292
|
+
<td class="o_bg-white o_px-md o_py-xl o_xs-py-md"
|
|
293
|
+
style="background-color: #ffffff;padding-left: 30px;padding-right: 24px;padding-bottom:15px">
|
|
294
|
+
<div class="o_col-6s o_sans o_text-md o_text-light o_center"
|
|
295
|
+
style="margin-top: 0px;margin-bottom: 0px;font-size: 12px;color: #202B3C;font-style: normal;font-weight: 400;font-size: 12px;line-height: 150%;">
|
|
296
|
+
<p>
|
|
297
|
+
© Tango Eye. All rights reserved.</p>
|
|
298
|
+
</div>
|
|
299
|
+
</td>
|
|
300
|
+
</tr>
|
|
301
|
+
</table>
|
|
302
|
+
</td>
|
|
303
|
+
</tr>
|
|
304
|
+
|
|
305
|
+
</table>
|
|
306
|
+
|
|
307
|
+
</body>
|
|
308
|
+
|
|
309
|
+
</html>
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
|
|
6
|
+
<meta charset="utf-8">
|
|
7
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
8
|
+
<title>Trial Extend Email</title>
|
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
10
|
+
<style type="text/css">
|
|
11
|
+
@media screen {
|
|
12
|
+
@font-face {
|
|
13
|
+
font-family: 'Inter';
|
|
14
|
+
font-style: normal;
|
|
15
|
+
font-weight: 400;
|
|
16
|
+
font-display: swap;
|
|
17
|
+
src: local("Inter"), local("Inter-Regular"), url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZJhiI2B.woff2) format('woff2');
|
|
18
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
body {
|
|
23
|
+
font-family: "Inter", sans-serif !important;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
body,
|
|
27
|
+
table,
|
|
28
|
+
td,
|
|
29
|
+
a {
|
|
30
|
+
-ms-text-size-adjust: 100%;
|
|
31
|
+
-webkit-text-size-adjust: 100%;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
table,
|
|
35
|
+
td {
|
|
36
|
+
mso-table-rspace: 0pt;
|
|
37
|
+
mso-table-lspace: 0pt;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
img {
|
|
41
|
+
-ms-interpolation-mode: bicubic;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
a[x-apple-data-detectors] {
|
|
45
|
+
font-family: "inherit" !important;
|
|
46
|
+
font-size: inherit !important;
|
|
47
|
+
font-weight: inherit !important;
|
|
48
|
+
line-height: inherit !important;
|
|
49
|
+
color: inherit !important;
|
|
50
|
+
text-decoration: none !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
div[style*="margin: 16px 0;"
|
|
55
|
+
|
|
56
|
+
] {
|
|
57
|
+
margin: 0 !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
body {
|
|
61
|
+
width: 100% !important;
|
|
62
|
+
height: 100% !important;
|
|
63
|
+
padding: 0 !important;
|
|
64
|
+
margin: 0 !important;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
table {
|
|
69
|
+
border-collapse: collapse !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
a {
|
|
73
|
+
color: #1a82e2;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
img {
|
|
77
|
+
height: auto;
|
|
78
|
+
line-height: 100%;
|
|
79
|
+
text-decoration: none;
|
|
80
|
+
border: 0;
|
|
81
|
+
outline: none;
|
|
82
|
+
}
|
|
83
|
+
</style>
|
|
84
|
+
|
|
85
|
+
</head>
|
|
86
|
+
|
|
87
|
+
<body style="background-color: #dbe5ea;">
|
|
88
|
+
|
|
89
|
+
<div class="preheader"
|
|
90
|
+
style="display: none; max-width: 0; max-height: 0; overflow: hidden; font-size: 1px; line-height: 1px; color: #fff; opacity: 0;">
|
|
91
|
+
Email Summary (Hidden)
|
|
92
|
+
</div>
|
|
93
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="padding-left:10px;padding-right:10px">
|
|
94
|
+
<tr>
|
|
95
|
+
<td bgcolor="#dbe5ea" style="padding:32px 10px 0 10px">
|
|
96
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;" align="center">
|
|
97
|
+
<tr>
|
|
98
|
+
<td class="o_bg-white o_px-md o_py-md o_sans o_text"
|
|
99
|
+
style="margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;background-color: #ffffff;padding-left: 18px;padding-right: 24px;padding-top: 24px;padding-bottom: 24px;">
|
|
100
|
+
<p style="margin-top: 0px;margin-bottom: 0px;"><a class="o_text-white"
|
|
101
|
+
href="https://tangoeye.ai/"
|
|
102
|
+
style="text-decoration: none;outline: none;color: #ffffff;"><img
|
|
103
|
+
src="https://devtangoretail-api.tangoeye.ai/logo.png"
|
|
104
|
+
width="200" height="100" alt="SimpleApp"
|
|
105
|
+
style="-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 100%;height: auto;outline: none;text-decoration: none;"></a>
|
|
106
|
+
</p>
|
|
107
|
+
</td>
|
|
108
|
+
</tr>
|
|
109
|
+
<tr>
|
|
110
|
+
<td align="left" bgcolor="#ffffff"
|
|
111
|
+
style="padding-left: 30px;padding-right: 24px; font-size: 14px; line-height: 24px;">
|
|
112
|
+
<p class="o_heading o_mb-xxs"
|
|
113
|
+
style="width: 544px;height: 0px;border: 1px solid #CBD5E1;flex: none;order: 1;flex-grow: 0;">
|
|
114
|
+
</p>
|
|
115
|
+
</td>
|
|
116
|
+
</tr>
|
|
117
|
+
<tr>
|
|
118
|
+
<td class="o_bg-white o_px-md o_py-xl o_xs-py-md"
|
|
119
|
+
style="background-color: #ffffff;padding-left: 30px;padding-right: 24px;padding-bottom: 10px;">
|
|
120
|
+
<div class="o_col-6s o_sans o_text-md o_text-light o_center"
|
|
121
|
+
style="margin-top: 0px;margin-bottom: 0px;font-size: 24px;line-height: 28px;color: #82899a;">
|
|
122
|
+
<span class="o_heading o_text-dark o_mb-xxs"
|
|
123
|
+
style="font-weight: 700;margin-top: 0px;margin-bottom: 4px;color: #121A26;line-height: 39px;">
|
|
124
|
+
Trial Extension </span>
|
|
125
|
+
</div>
|
|
126
|
+
</td>
|
|
127
|
+
</tr>
|
|
128
|
+
</table>
|
|
129
|
+
</td>
|
|
130
|
+
</tr>
|
|
131
|
+
<tr>
|
|
132
|
+
<td align="center" bgcolor="#dbe5ea" style="padding:0 10px 0 10px">
|
|
133
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;">
|
|
134
|
+
<!-- <tr>
|
|
135
|
+
<td align="left" bgcolor="#ffffff"
|
|
136
|
+
style="padding-left: 30px; padding-right: 24px;padding-bottom: 10px;font-weight: 400;font-size: 16px;line-height: 150%;color:#384860">
|
|
137
|
+
<p style="margin: 0;">Hi ${data?.name},</p>
|
|
138
|
+
</td>
|
|
139
|
+
</tr> -->
|
|
140
|
+
<tr>
|
|
141
|
+
<td align="left" bgcolor="#ffffff"
|
|
142
|
+
style="padding-left: 30px;padding-right: 24px;padding-top:10px; font-size: 16px; line-height: 24px;font-weight:400;color:#384860">
|
|
143
|
+
<p style="margin: 0;">"Great news! We've extended your trial by {{data.days}} and the new end date is {{data.date}}. Enjoy more time exploring our features. Upgrade for uninterrupted access.
|
|
144
|
+
</p>
|
|
145
|
+
</td>
|
|
146
|
+
</tr>
|
|
147
|
+
<tr>
|
|
148
|
+
<td bgcolor="#ffffff" style="padding: 20px;padding-top:30px;padding-left:30px;">
|
|
149
|
+
<table border="0" cellpadding="0" cellspacing="0">
|
|
150
|
+
<tr>
|
|
151
|
+
<td align="center" bgcolor="#00A3FF" style="border-radius: 6px;height:50px;">
|
|
152
|
+
<a href="{{data.domain}}" target="_blank"
|
|
153
|
+
style="display: inline-block; padding: 16px 36px; font-size: 16px; color: #ffffff; text-decoration: none; border-radius: 6px;">Upgrade Now
|
|
154
|
+
</a>
|
|
155
|
+
</td>
|
|
156
|
+
</tr>
|
|
157
|
+
</table>
|
|
158
|
+
</td>
|
|
159
|
+
</tr>
|
|
160
|
+
</table>
|
|
161
|
+
</td>
|
|
162
|
+
</tr>
|
|
163
|
+
<tr>
|
|
164
|
+
<td align="center" bgcolor="#dbe5ea" style="padding:0 10px 32px 10px">
|
|
165
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;">
|
|
166
|
+
<tr>
|
|
167
|
+
<td class="o_bg-white o_px-md o_py-xl o_xs-py-md"
|
|
168
|
+
style="background-color: #ffffff;padding-left: 27px;padding-right: 24px;padding-top:0px">
|
|
169
|
+
<div class="o_col-6s o_sans o_text-md o_text-light o_center"
|
|
170
|
+
style="margin-top: 0px;margin-bottom: 0px;font-size: 12px;color: #202B3C;font-style: normal;font-weight: 400;font-size: 12px;line-height: 150%;">
|
|
171
|
+
<p>
|
|
172
|
+
If you'd rather not receive this kind of email, Don’t want any more emails from TangoEye? <a style="color: var(--Primary-Base, #00A3FF); text-decoration-line: underline; letter-spacing: 0.2px;">Unsubscribe.</a></p>
|
|
173
|
+
</div>
|
|
174
|
+
</td>
|
|
175
|
+
</tr>
|
|
176
|
+
<tr>
|
|
177
|
+
<td class="o_bg-white o_px-md o_py-xl o_xs-py-md"
|
|
178
|
+
style="background-color: #ffffff;padding:0px 24px 15px 27px">
|
|
179
|
+
<div class="o_col-6s o_sans o_text-md o_text-light o_center"
|
|
180
|
+
style="margin-top: 0px;margin-bottom: 0px;font-size: 12px;color: #202B3C;font-style: normal;font-weight: 400;font-size: 12px;line-height: 150%;">
|
|
181
|
+
<p>
|
|
182
|
+
© Tango Eye. All rights reserved.</p>
|
|
183
|
+
</div>
|
|
184
|
+
</td>
|
|
185
|
+
</tr>
|
|
186
|
+
</table>
|
|
187
|
+
</td>
|
|
188
|
+
</tr>
|
|
189
|
+
|
|
190
|
+
</table>
|
|
191
|
+
|
|
192
|
+
</body>
|
|
193
|
+
|
|
194
|
+
</html>
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
<meta charset="utf-8">
|
|
7
7
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
8
|
-
<title>
|
|
8
|
+
<title>Trial Intiate Email</title>
|
|
9
9
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
10
10
|
<style type="text/css">
|
|
11
11
|
@media screen {
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
<p style="margin-top: 0px;margin-bottom: 0px;"><a class="o_text-white"
|
|
101
101
|
href="https://tangoeye.ai/"
|
|
102
102
|
style="text-decoration: none;outline: none;color: #ffffff;"><img
|
|
103
|
-
src="https://
|
|
103
|
+
src="https://devtangoretail-api.tangoeye.ai/logo.png"
|
|
104
104
|
width="200" height="100" alt="SimpleApp"
|
|
105
105
|
style="-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 100%;height: auto;outline: none;text-decoration: none;"></a>
|
|
106
106
|
</p>
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
style="margin-top: 0px;margin-bottom: 0px;font-size: 24px;line-height: 28px;color: #82899a;">
|
|
122
122
|
<span class="o_heading o_text-dark o_mb-xxs"
|
|
123
123
|
style="font-weight: 700;margin-top: 0px;margin-bottom: 4px;color: #121A26;line-height: 140%;">
|
|
124
|
-
Welcome to
|
|
124
|
+
Welcome to {{data.product}} Trial - Explore Premium Features! </span>
|
|
125
125
|
</div>
|
|
126
126
|
</td>
|
|
127
127
|
</tr>
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
<tr>
|
|
135
135
|
<td align="left" bgcolor="#ffffff"
|
|
136
136
|
style="padding-left: 30px; padding-right: 24px;padding-top:10px;padding-bottom: 10px;font-weight: 400;font-size: 16px;line-height: 150%;color:#384860">
|
|
137
|
-
<p style="margin: 0;">Dear
|
|
137
|
+
<p style="margin: 0;">Dear {{data.userName}},</p>
|
|
138
138
|
</td>
|
|
139
139
|
</tr>
|
|
140
140
|
<tr>
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
<div style="display:flex">
|
|
178
178
|
<div style="display:flex;width:280px;">
|
|
179
179
|
<div>
|
|
180
|
-
<img src="https://
|
|
180
|
+
<img src="https://devtangoretail-api.tangoeye.ai/Checkbox.png"
|
|
181
181
|
alt="SimpleApp"
|
|
182
182
|
style="-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 100%;height: auto;outline: none;text-decoration: none;width: 25px;height:25px;">
|
|
183
183
|
</div>
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
</div>
|
|
190
190
|
<div style="display:flex;width:280px;">
|
|
191
191
|
<div>
|
|
192
|
-
<img src="https://
|
|
192
|
+
<img src="https://devtangoretail-api.tangoeye.ai/Checkbox.png"
|
|
193
193
|
alt="SimpleApp"
|
|
194
194
|
style="-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 100%;height: auto;outline: none;text-decoration: none;width: 25px;height:25px;">
|
|
195
195
|
</div>
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
<div style="display:flex">
|
|
210
210
|
<div style="display:flex;width:280px;">
|
|
211
211
|
<div>
|
|
212
|
-
<img src="https://
|
|
212
|
+
<img src="https://devtangoretail-api.tangoeye.ai/Checkbox.png"
|
|
213
213
|
alt="SimpleApp"
|
|
214
214
|
style="-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 100%;height: auto;outline: none;text-decoration: none;width: 25px;height:25px;">
|
|
215
215
|
</div>
|
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
</div>
|
|
222
222
|
<div style="display:flex;width:280px;">
|
|
223
223
|
<div>
|
|
224
|
-
<img src="https://
|
|
224
|
+
<img src="https://devtangoretail-api.tangoeye.ai/Checkbox.png"
|
|
225
225
|
alt="SimpleApp"
|
|
226
226
|
style="-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 100%;height: auto;outline: none;text-decoration: none;width: 25px;height:25px;">
|
|
227
227
|
</div>
|
|
@@ -251,8 +251,8 @@
|
|
|
251
251
|
<td bgcolor="#ffffff" style="padding: 20px;padding-top:10px;padding-left:30px;">
|
|
252
252
|
<table border="0" cellpadding="0" cellspacing="0">
|
|
253
253
|
<tr>
|
|
254
|
-
<td align="center" bgcolor="#00A3FF" style="border-radius: 6px;">
|
|
255
|
-
<a href="data.
|
|
254
|
+
<td align="center" bgcolor="#00A3FF" style="border-radius: 6px;height:50px;">
|
|
255
|
+
<a href="{{data.domain}}" target="_blank"
|
|
256
256
|
style="display: inline-block; padding: 16px 36px; font-size: 16px; color: #ffffff; text-decoration: none; border-radius: 6px;">View
|
|
257
257
|
Dashboard
|
|
258
258
|
</a>
|