forked from leemunroe/responsive-html-email-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
email-cancel-membership-automatic.html
537 lines (453 loc) · 13.1 KB
/
email-cancel-membership-automatic.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="color-scheme" content="light">
<meta name="supported-color-schemes" content="light dark">
<title>Cenital Cancel Membership</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,700,700i" rel="stylesheet">
<style>
/* -------------------------------------
GLOBAL RESETS
------------------------------------- */
/*All the styling goes here*/
img {
border: none;
-ms-interpolation-mode: bicubic;
max-width: 100%;
}
body {
font-family: sans-serif;
-webkit-font-smoothing: antialiased;
font-size: 14px;
line-height: 1.4;
margin: 0;
padding: 0;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
table {
border-collapse: separate;
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
width: 100%;
}
table td {
font-family: sans-serif;
font-size: 14px;
vertical-align: top;
}
/* -------------------------------------
BODY & CONTAINER
------------------------------------- */
.body {
width: 100%;
}
/* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
.container {
display: block;
margin: 0 auto !important;
/* makes it centered */
max-width: 580px;
padding: 10px;
width: 580px;
}
/* This should also be a block element, so that it will fill 100% of the .container */
.content {
box-sizing: border-box;
display: block;
margin: 0 auto;
max-width: 580px;
padding: 10px;
}
/* -------------------------------------
HEADER, FOOTER, MAIN
------------------------------------- */
.main {
background: #ffffff;
border-radius: 3px;
width: 100%;
}
.header {
padding: 35px 30px;
background: #F4F4F4;
}
.wrapper {
box-sizing: border-box;
padding: 30px;
}
.content-block {
padding-bottom: 10px;
padding-top: 10px;
}
.mejores-amigos {
background-color: #F9C22E;
padding: 30px;
}
.mejores-amigos tr td {
display: inline-block;
}
.mejores-amigos .title {
width: 210px;
}
.mejores-amigos .content-block {
max-width: 290px;
padding: 0;
}
.mejores-amigos .title div {
font-size: 38px;
font-weight: 700;
line-height: 120%;
}
.mejores-amigos .title div img {
vertical-align: middle;
}
.footer {
clear: both;
margin-top: 10px;
text-align: center;
width: 100%;
}
.footer td,
.footer p,
.footer span,
.footer a {
color: #999999;
font-size: 10px;
text-align: center;
}
.footer a {
color: #EA473B;
}
/* -------------------------------------
TYPOGRAPHY
------------------------------------- */
h1,
h2,
h3,
h4 {
color: #000000;
font-family: sans-serif;
font-weight: 400;
line-height: 1.4;
margin: 0;
margin-bottom: 30px;
}
h1 {
font-size: 35px;
font-weight: 300;
text-align: center;
text-transform: capitalize;
}
p,
ul,
ol {
font-family: Georgia, serif;
font-size: 16px;
font-weight: normal;
margin: 0;
margin-bottom: 15px;
}
p li,
ul li,
ol li {
list-style-position: inside;
margin-left: 5px;
}
a {
color: #EA473B;
text-decoration: underline;
}
/* -------------------------------------
BUTTONS
------------------------------------- */
.btn {
box-sizing: border-box;
width: 100%;
}
.btn>tbody>tr>td {
padding-bottom: 15px;
}
.btn table {
width: auto;
width: 100%;
}
.btn table td {
background-color: #ffffff;
border-radius: 5px;
text-align: center;
}
.btn a {
background-color: #ffffff;
border: solid 1px #3498db;
border-radius: 5px;
box-sizing: border-box;
color: #3498db;
cursor: pointer;
display: inline-block;
font-size: 14px;
font-weight: bold;
margin: 0;
padding: 12px 25px;
text-decoration: none;
text-transform: capitalize;
text-align: center;
}
.btn-primary table td {
/* background-color: #3498db; */
}
.btn-primary a {
background-color: #EA473B;
border-color: #EA473B;
color: #ffffff;
}
a.btn-secondary {
color: #6a6a6a;
border: 2px solid #6a6a6a;
padding: 10px 10px;
border-radius: 15px;
text-decoration: none;
text-transform: uppercase;
font-weight: 600;
margin-top: 10px;
display: inline-block;
font-size: 11px;
line-height: 100%;
}
/* -------------------------------------
OTHER STYLES THAT MIGHT BE USEFUL
------------------------------------- */
.last {
margin-bottom: 0;
}
.first {
margin-top: 0;
}
.align-center {
text-align: center;
}
.align-right {
text-align: right;
}
.align-left {
text-align: left;
}
.clear {
clear: both;
}
.mt0 {
margin-top: 0;
}
.mb0 {
margin-bottom: 0;
}
.preheader {
color: transparent;
display: none;
height: 0;
max-height: 0;
max-width: 0;
opacity: 0;
overflow: hidden;
mso-hide: all;
visibility: hidden;
width: 0;
}
.powered-by a {
text-decoration: none;
}
hr {
border: 0;
border-bottom: 1px solid #f6f6f6;
margin: 20px 0;
}
/* -------------------------------------
RESPONSIVE AND MOBILE FRIENDLY STYLES
------------------------------------- */
@media only screen and (max-width: 620px) {
table.body h1 {
font-size: 28px !important;
margin-bottom: 10px !important;
}
table.body .main p,
table.body .main ul,
table.body .main ol,
table.body .main td,
table.body .main span,
table.body .main a {
font-size: 16px !important;
}
table.body .header,
table.body .wrapper,
table.body .article {
padding: 20px !important;
}
table.body .content {
padding: 0 !important;
}
table.body .container {
padding: 0 !important;
width: 100% !important;
}
table.body .main {
border-left-width: 0 !important;
border-radius: 0 !important;
border-right-width: 0 !important;
}
table.body .btn table {
width: 100% !important;
}
table.body .btn a {
width: 100% !important;
}
table.body .img-responsive {
height: auto !important;
max-width: 100% !important;
width: auto !important;
}
.mejores-amigos .title,
.mejores-amigos .content-block {
width: 100%;
max-width: 100%;
}
.mejores-amigos .content-block {
margin-top: 15px;
}
.mejores-amigos .content-block * {
font-size: 14px !important;
}
.mejores-amigos .content-block a {
font-size: 12px !important;
}
.footer td span,
.footer td a {
font-size: 10px !important;
}
}
/* -------------------------------------
PRESERVE THESE STYLES IN THE HEAD
------------------------------------- */
@media all {
.ExternalClass {
width: 100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
.apple-link a {
color: inherit !important;
font-family: inherit !important;
font-size: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
text-decoration: none !important;
}
#MessageViewBody a {
color: inherit;
text-decoration: none;
font-size: inherit;
font-family: inherit;
font-weight: inherit;
line-height: inherit;
}
.btn-primary table td:hover {
/* background-color: #34495e !important; */
}
.btn-primary a:hover {
background-color: #34495e !important;
border-color: #34495e !important;
}
}
@media (prefers-color-scheme: dark) {
.mejores-amigos * {}
}
</style>
</head>
<body>
<span class="preheader">Gracias por ser parte de nuestros Mejores amigos.</span>
<table role="presentation" border="0" cellpadding="0" cellspacing="0" class="body">
<tr>
<td> </td>
<td class="container">
<div class="content">
<!-- START CENTERED WHITE CONTAINER -->
<table role="presentation" class="main">
<tr>
<td class="header">
<img src="https://cenital.com/wp-content/uploads/emails/logo_cenital.png" alt="Cenital" width="105"
height="32" style="margin-bottom:15px">
<div
style="font-size: 16px;text-align: left;color:#474646;font-family: 'Source Sans Pro',Arial,sans-serif;border-bottom:1px solid #000;padding-bottom:10px">
Entender es informarse.</div>
</td>
</tr>
<!-- START MAIN CONTENT AREA -->
<tr>
<td class="wrapper">
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<p>Hola,</p>
<p>Mi nombre es Javier Borelli y trabajo como responsable de Comunidad y membresía en Cenital. Te
escribo porque tu membresía como Mejor amigo de Cenital fue dada de baja automáticamente porque
se cumplieron al menos tres meses seguidos en los que no fue posible realizar el cobro.</p>
<p>Esto puede ocurrir por vencimiento de la tarjeta a la que estaba asociada tu membresía, falta
de fondos en la cuenta o, simplemente, un error técnico del sistema de procesamiento de pagos.
Por eso te escribimos este correo para ponerte al tanto e invitarte a continuar formando parte
de nuestra comunidad de Mejores amigos.
</p>
<p>Podés volver a sumarte desde <a
href="https://cenital.com/sumate/?utm_source=cenital&utm_medium=email&utm_campaign=mobbex">nuestro
sitio web</a> o desde tu perfil de usuario en <a
href="https://cenital.com/mi-cenital/?utm_source=cenital&utm_medium=email&utm_campaign=mobbex">“Mi
Cenital”</a> (en caso de que nunca hayas ingresado podés <a
href="https://cenital.com/recuperar-contrasena/?utm_source=cenital&utm_medium=email&utm_campaign=mobbex">generar
tu contraseña acá</a>).</p>
<p>En caso de que tu baja haya sido voluntaria, quiero ponerme a disposición para conversar sobre
los motivos y preguntarte si hay algo que podemos hacer para mejorar.</p>
<p>En cualquier caso, igual quiero agradecerte por tu apoyo hasta acá. Para un proyecto como el
nuestro el aporte de los lectores es fundamental ya que nos permite hacer periodismo sin
condicionantes.</p>
<p>Quedo atento a tu respuesta y a disposición por cualquier consulta. </p>
<p>Te mando un abrazo,</p>
<p>Javier</p>
</td>
</tr>
</table>
</td>
</tr>
<!-- END MAIN CONTENT AREA -->
</table>
<!-- END CENTERED WHITE CONTAINER -->
<!-- START FOOTER -->
<div class="footer">
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="content-block">
<span>Este correo fue enviado por única vez. <br>Si tenés cualquier consulta podés escribirnos a <a
href="mailto:info@cenital.com">info@cenital.com</a>.</span>
</td>
</tr>
<tr>
<td class="content-block powered-by">
<a href="https://cenital.com"><img
src="https://cenital.com/wp-content/uploads/emails/logo_cenital_footer.png" alt="Cenital"
width="61" height="19"></a>
</td>
</tr>
</table>
</div>
<!-- END FOOTER -->
</div>
</td>
<td> </td>
</tr>
</table>
</body>
</html>