ish_manager 0.1.8.345 → 0.1.8.346
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '09fb9aa071250abfb6c6b6b112a5b9cf4713d6bbf9b8f1d4f54f1e4df4aa42a9'
|
4
|
+
data.tar.gz: f3dfdec908abcf40c418ce33abbf876dd3ffc43fd4bb579901675cba7e4901af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a8c93d5b09bf8b7de79f2bf6ec2c68dea1210dbc541a82ae94171475c5fe6eff058ad1ba5349225a054749f04efa21d48221e819c9255da43b0bcee080e19f9
|
7
|
+
data.tar.gz: e47f9940f8cfcc61a87d6aeea63d4e4abd26408cb6d7440cedc52e31a2da2601dd18311eb87dcaf4980eb6e27867acd178b379db43645509024d6053b3632bce
|
@@ -32,7 +32,7 @@ class ::IshManager::EmailTemplatesController < ::IshManager::ApplicationControll
|
|
32
32
|
authorize! :iframe_src, Ish::EmailTemplate
|
33
33
|
@email_template = Ish::EmailTemplate.where({ id: params[:id] }).first ||
|
34
34
|
Ish::EmailTemplate.find_by({ slug: params[:id] })
|
35
|
-
@email_ctx = EmailContext.new({ body: Ish::LoremIpsum.html })
|
35
|
+
@email_ctx = Ish::EmailContext.new({ body: Ish::LoremIpsum.html })
|
36
36
|
render layout: false
|
37
37
|
end
|
38
38
|
|
@@ -47,7 +47,7 @@ class ::IshManager::EmailTemplatesController < ::IshManager::ApplicationControll
|
|
47
47
|
|
48
48
|
@email_template = Ish::EmailTemplate.where({ id: params[:id] }).first ||
|
49
49
|
Ish::EmailTemplate.find_by({ slug: params[:id] })
|
50
|
-
@email_ctx = EmailContext.new({ body: Ish::LoremIpsum.html })
|
50
|
+
@email_ctx = ::Ish::EmailContext.new({ body: Ish::LoremIpsum.html })
|
51
51
|
end
|
52
52
|
|
53
53
|
def update
|
@@ -16,9 +16,13 @@ class IshManager::OfficeMailer < IshManager::ApplicationMailer
|
|
16
16
|
'v' => 1,
|
17
17
|
'tid' => 'UA-53077236-2',
|
18
18
|
'cid' => @lead.cid,
|
19
|
+
'uid' => @lead.uid,
|
19
20
|
't' => 'event',
|
20
21
|
'ec' => 'email',
|
21
22
|
'ea' => 'open',
|
23
|
+
'cn' => @campaign.slug,
|
24
|
+
'ci' => @campaign.slug,
|
25
|
+
'cm' => 'email',
|
22
26
|
'utm_source' => @campaign.slug,
|
23
27
|
'utm_medium' => 'email',
|
24
28
|
'utm_campaign' => @campaign.slug,
|
@@ -27,12 +31,13 @@ class IshManager::OfficeMailer < IshManager::ApplicationMailer
|
|
27
31
|
|
28
32
|
@click_tracking = {
|
29
33
|
'cid' => @lead.cid,
|
34
|
+
'uid' => @lead.uid,
|
30
35
|
't' => 'event',
|
31
36
|
'ec' => 'email',
|
32
37
|
'ea' => 'clk-ctct', # clicked contact us
|
33
|
-
'utm_source' =>
|
38
|
+
'utm_source' => @campaign.slug,
|
34
39
|
'utm_medium' => 'email',
|
35
|
-
'utm_campaign' =>
|
40
|
+
'utm_campaign' => @campaign.slug,
|
36
41
|
}.map { |k, v| "#{k}=#{v}" }.join("&")
|
37
42
|
actl.instance_variable_set( :@click_tracking, @click_tracking )
|
38
43
|
|
@@ -0,0 +1,764 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
3
|
+
<head>
|
4
|
+
<!-- NAME: BOUTIQUE -->
|
5
|
+
<!--[if gte mso 15]>
|
6
|
+
<xml>
|
7
|
+
<o:OfficeDocumentSettings>
|
8
|
+
<o:AllowPNG/>
|
9
|
+
<o:PixelsPerInch>96</o:PixelsPerInch>
|
10
|
+
</o:OfficeDocumentSettings>
|
11
|
+
</xml>
|
12
|
+
<![endif]-->
|
13
|
+
<meta charset="UTF-8">
|
14
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
15
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
16
|
+
<title>Merry Christmas!</title>
|
17
|
+
|
18
|
+
<style type="text/css">
|
19
|
+
p{
|
20
|
+
margin:10px 0;
|
21
|
+
padding:0;
|
22
|
+
}
|
23
|
+
table{
|
24
|
+
border-collapse:collapse;
|
25
|
+
}
|
26
|
+
h1,h2,h3,h4,h5,h6{
|
27
|
+
display:block;
|
28
|
+
margin:0;
|
29
|
+
padding:0;
|
30
|
+
}
|
31
|
+
img,a img{
|
32
|
+
border:0;
|
33
|
+
height:auto;
|
34
|
+
outline:none;
|
35
|
+
text-decoration:none;
|
36
|
+
}
|
37
|
+
body,#bodyTable,#bodyCell{
|
38
|
+
height:100%;
|
39
|
+
margin:0;
|
40
|
+
padding:0;
|
41
|
+
width:100%;
|
42
|
+
}
|
43
|
+
.mcnPreviewText{
|
44
|
+
display:none !important;
|
45
|
+
}
|
46
|
+
#outlook a{
|
47
|
+
padding:0;
|
48
|
+
}
|
49
|
+
img{
|
50
|
+
-ms-interpolation-mode:bicubic;
|
51
|
+
}
|
52
|
+
table{
|
53
|
+
mso-table-lspace:0pt;
|
54
|
+
mso-table-rspace:0pt;
|
55
|
+
}
|
56
|
+
.ReadMsgBody{
|
57
|
+
width:100%;
|
58
|
+
}
|
59
|
+
.ExternalClass{
|
60
|
+
width:100%;
|
61
|
+
}
|
62
|
+
p,a,li,td,blockquote{
|
63
|
+
mso-line-height-rule:exactly;
|
64
|
+
}
|
65
|
+
a[href^=tel],a[href^=sms]{
|
66
|
+
color:inherit;
|
67
|
+
cursor:default;
|
68
|
+
text-decoration:none;
|
69
|
+
}
|
70
|
+
p,a,li,td,body,table,blockquote{
|
71
|
+
-ms-text-size-adjust:100%;
|
72
|
+
-webkit-text-size-adjust:100%;
|
73
|
+
}
|
74
|
+
.ExternalClass,.ExternalClass p,.ExternalClass td,.ExternalClass div,.ExternalClass span,.ExternalClass font{
|
75
|
+
line-height:100%;
|
76
|
+
}
|
77
|
+
a[x-apple-data-detectors]{
|
78
|
+
color:inherit !important;
|
79
|
+
text-decoration:none !important;
|
80
|
+
font-size:inherit !important;
|
81
|
+
font-family:inherit !important;
|
82
|
+
font-weight:inherit !important;
|
83
|
+
line-height:inherit !important;
|
84
|
+
}
|
85
|
+
a.mcnButton{
|
86
|
+
display:block;
|
87
|
+
}
|
88
|
+
.mcnImage,.mcnRetinaImage{
|
89
|
+
vertical-align:bottom;
|
90
|
+
}
|
91
|
+
.mcnTextContent{
|
92
|
+
word-break:break-word;
|
93
|
+
}
|
94
|
+
.mcnTextContent img{
|
95
|
+
height:auto !important;
|
96
|
+
}
|
97
|
+
.mcnDividerBlock{
|
98
|
+
table-layout:fixed !important;
|
99
|
+
}
|
100
|
+
/*
|
101
|
+
@tab Page
|
102
|
+
@section background style
|
103
|
+
@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.
|
104
|
+
*/
|
105
|
+
body,#bodyTable,#templateFooter{
|
106
|
+
/*@editable*/background-color:#FFFFFF;
|
107
|
+
}
|
108
|
+
/*
|
109
|
+
@tab Page
|
110
|
+
@section background style
|
111
|
+
@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.
|
112
|
+
*/
|
113
|
+
#bodyCell{
|
114
|
+
/*@editable*/border-top:0;
|
115
|
+
}
|
116
|
+
/*
|
117
|
+
@tab Page
|
118
|
+
@section email border
|
119
|
+
@tip Set the border for your email.
|
120
|
+
*/
|
121
|
+
#templateContainer{
|
122
|
+
/*@editable*/border:0;
|
123
|
+
}
|
124
|
+
/*
|
125
|
+
@tab Page
|
126
|
+
@section heading 1
|
127
|
+
@tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.
|
128
|
+
@style heading 1
|
129
|
+
*/
|
130
|
+
h1{
|
131
|
+
/*@editable*/color:#FFFFFF !important;
|
132
|
+
display:block;
|
133
|
+
/*@editable*/font-family:Helvetica;
|
134
|
+
/*@editable*/font-size:40px;
|
135
|
+
/*@editable*/font-style:normal;
|
136
|
+
/*@editable*/font-weight:bold;
|
137
|
+
/*@editable*/line-height:100%;
|
138
|
+
/*@editable*/letter-spacing:-1px;
|
139
|
+
margin:0;
|
140
|
+
/*@editable*/text-align:center;
|
141
|
+
}
|
142
|
+
/*
|
143
|
+
@tab Page
|
144
|
+
@section heading 2
|
145
|
+
@tip Set the styling for all second-level headings in your emails.
|
146
|
+
@style heading 2
|
147
|
+
*/
|
148
|
+
h2{
|
149
|
+
/*@editable*/color:#000000 !important;
|
150
|
+
display:block;
|
151
|
+
/*@editable*/font-family:Helvetica;
|
152
|
+
/*@editable*/font-size:36px;
|
153
|
+
/*@editable*/font-style:normal;
|
154
|
+
/*@editable*/font-weight:bold;
|
155
|
+
/*@editable*/line-height:125%;
|
156
|
+
/*@editable*/letter-spacing:-.75px;
|
157
|
+
margin:0;
|
158
|
+
/*@editable*/text-align:center;
|
159
|
+
}
|
160
|
+
/*
|
161
|
+
@tab Page
|
162
|
+
@section heading 3
|
163
|
+
@tip Set the styling for all third-level headings in your emails.
|
164
|
+
@style heading 3
|
165
|
+
*/
|
166
|
+
h3{
|
167
|
+
/*@editable*/color:#606060 !important;
|
168
|
+
display:block;
|
169
|
+
/*@editable*/font-family:Helvetica;
|
170
|
+
/*@editable*/font-size:18px;
|
171
|
+
/*@editable*/font-style:normal;
|
172
|
+
/*@editable*/font-weight:bold;
|
173
|
+
/*@editable*/line-height:125%;
|
174
|
+
/*@editable*/letter-spacing:-.5px;
|
175
|
+
margin:0;
|
176
|
+
/*@editable*/text-align:left;
|
177
|
+
}
|
178
|
+
/*
|
179
|
+
@tab Page
|
180
|
+
@section heading 4
|
181
|
+
@tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.
|
182
|
+
@style heading 4
|
183
|
+
*/
|
184
|
+
h4{
|
185
|
+
/*@editable*/color:#808080 !important;
|
186
|
+
display:block;
|
187
|
+
/*@editable*/font-family:Helvetica;
|
188
|
+
/*@editable*/font-size:16px;
|
189
|
+
/*@editable*/font-style:normal;
|
190
|
+
/*@editable*/font-weight:bold;
|
191
|
+
/*@editable*/line-height:125%;
|
192
|
+
/*@editable*/letter-spacing:normal;
|
193
|
+
margin:0;
|
194
|
+
/*@editable*/text-align:left;
|
195
|
+
}
|
196
|
+
/*
|
197
|
+
@tab Preheader
|
198
|
+
@section preheader style
|
199
|
+
@tip Set the background color and borders for your email's preheader area.
|
200
|
+
*/
|
201
|
+
#templatePreheader{
|
202
|
+
/*@editable*/background-color:#FFFFFF;
|
203
|
+
/*@editable*/border-top:0;
|
204
|
+
/*@editable*/border-bottom:1px solid #000000;
|
205
|
+
}
|
206
|
+
/*
|
207
|
+
@tab Preheader
|
208
|
+
@section preheader text
|
209
|
+
@tip Set the styling for your email's preheader text. Choose a size and color that is easy to read.
|
210
|
+
*/
|
211
|
+
.preheaderContainer .mcnTextContent,.preheaderContainer .mcnTextContent p{
|
212
|
+
/*@editable*/color:#000000;
|
213
|
+
/*@editable*/font-family:Helvetica;
|
214
|
+
/*@editable*/font-size:11px;
|
215
|
+
/*@editable*/line-height:125%;
|
216
|
+
/*@editable*/text-align:left;
|
217
|
+
}
|
218
|
+
/*
|
219
|
+
@tab Preheader
|
220
|
+
@section preheader link
|
221
|
+
@tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.
|
222
|
+
*/
|
223
|
+
.preheaderContainer .mcnTextContent a{
|
224
|
+
/*@editable*/color:#000000;
|
225
|
+
/*@editable*/font-weight:normal;
|
226
|
+
/*@editable*/text-decoration:underline;
|
227
|
+
}
|
228
|
+
/*
|
229
|
+
@tab Header
|
230
|
+
@section header style
|
231
|
+
@tip Set the background color and borders for your email's header area.
|
232
|
+
*/
|
233
|
+
#templateHeader{
|
234
|
+
/*@editable*/background-color:#FFFFFF;
|
235
|
+
/*@editable*/border-top:0;
|
236
|
+
/*@editable*/border-bottom:0;
|
237
|
+
}
|
238
|
+
/*
|
239
|
+
@tab Header
|
240
|
+
@section header text
|
241
|
+
@tip Set the styling for your email's header text. Choose a size and color that is easy to read.
|
242
|
+
*/
|
243
|
+
.headerContainer .mcnTextContent,.headerContainer .mcnTextContent p{
|
244
|
+
/*@editable*/color:#000000;
|
245
|
+
/*@editable*/font-family:Helvetica;
|
246
|
+
/*@editable*/font-size:16px;
|
247
|
+
/*@editable*/line-height:150%;
|
248
|
+
/*@editable*/text-align:center;
|
249
|
+
}
|
250
|
+
/*
|
251
|
+
@tab Header
|
252
|
+
@section header link
|
253
|
+
@tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.
|
254
|
+
*/
|
255
|
+
.headerContainer .mcnTextContent a{
|
256
|
+
/*@editable*/color:#000000;
|
257
|
+
/*@editable*/font-weight:normal;
|
258
|
+
/*@editable*/text-decoration:underline;
|
259
|
+
}
|
260
|
+
/*
|
261
|
+
@tab Body
|
262
|
+
@section body style
|
263
|
+
@tip Set the background color and borders for your email's body area.
|
264
|
+
*/
|
265
|
+
#templateBody{
|
266
|
+
/*@editable*/background-color:#FFFFFF;
|
267
|
+
/*@editable*/border-top:0;
|
268
|
+
/*@editable*/border-bottom:0;
|
269
|
+
}
|
270
|
+
/*
|
271
|
+
@tab Body
|
272
|
+
@section body text
|
273
|
+
@tip Set the styling for your email's body text. Choose a size and color that is easy to read.
|
274
|
+
*/
|
275
|
+
.bodyContainer .mcnTextContent,.bodyContainer .mcnTextContent p{
|
276
|
+
/*@editable*/color:#000000;
|
277
|
+
/*@editable*/font-family:Helvetica;
|
278
|
+
/*@editable*/font-size:16px;
|
279
|
+
/*@editable*/line-height:150%;
|
280
|
+
/*@editable*/text-align:center;
|
281
|
+
}
|
282
|
+
/*
|
283
|
+
@tab Body
|
284
|
+
@section body link
|
285
|
+
@tip Set the styling for your email's body links. Choose a color that helps them stand out from your text.
|
286
|
+
*/
|
287
|
+
.bodyContainer .mcnTextContent a{
|
288
|
+
/*@editable*/color:#000000;
|
289
|
+
/*@editable*/font-weight:normal;
|
290
|
+
/*@editable*/text-decoration:underline;
|
291
|
+
}
|
292
|
+
/*
|
293
|
+
@tab Columns
|
294
|
+
@section column style
|
295
|
+
@tip Set the background color and borders for your email's columns area.
|
296
|
+
*/
|
297
|
+
#templateColumns{
|
298
|
+
/*@editable*/background-color:#FFFFFF;
|
299
|
+
/*@editable*/border-top:0;
|
300
|
+
/*@editable*/border-bottom:0;
|
301
|
+
}
|
302
|
+
/*
|
303
|
+
@tab Columns
|
304
|
+
@section left column text
|
305
|
+
@tip Set the styling for your email's left column text. Choose a size and color that is easy to read.
|
306
|
+
*/
|
307
|
+
.leftColumnContainer .mcnTextContent,.leftColumnContainer .mcnTextContent p{
|
308
|
+
/*@editable*/color:#000000;
|
309
|
+
/*@editable*/font-family:Helvetica;
|
310
|
+
/*@editable*/font-size:14px;
|
311
|
+
/*@editable*/line-height:150%;
|
312
|
+
/*@editable*/text-align:center;
|
313
|
+
}
|
314
|
+
/*
|
315
|
+
@tab Columns
|
316
|
+
@section left column link
|
317
|
+
@tip Set the styling for your email's left column links. Choose a color that helps them stand out from your text.
|
318
|
+
*/
|
319
|
+
.leftColumnContainer .mcnTextContent a{
|
320
|
+
/*@editable*/color:#000000;
|
321
|
+
/*@editable*/font-weight:normal;
|
322
|
+
/*@editable*/text-decoration:underline;
|
323
|
+
}
|
324
|
+
/*
|
325
|
+
@tab Columns
|
326
|
+
@section right column text
|
327
|
+
@tip Set the styling for your email's right column text. Choose a size and color that is easy to read.
|
328
|
+
*/
|
329
|
+
.rightColumnContainer .mcnTextContent,.rightColumnContainer .mcnTextContent p{
|
330
|
+
/*@editable*/color:#000000;
|
331
|
+
/*@editable*/font-family:Helvetica;
|
332
|
+
/*@editable*/font-size:14px;
|
333
|
+
/*@editable*/line-height:150%;
|
334
|
+
/*@editable*/text-align:center;
|
335
|
+
}
|
336
|
+
/*
|
337
|
+
@tab Columns
|
338
|
+
@section right column link
|
339
|
+
@tip Set the styling for your email's right column links. Choose a color that helps them stand out from your text.
|
340
|
+
*/
|
341
|
+
.rightColumnContainer .mcnTextContent a{
|
342
|
+
/*@editable*/color:#000000;
|
343
|
+
/*@editable*/font-weight:normal;
|
344
|
+
/*@editable*/text-decoration:underline;
|
345
|
+
}
|
346
|
+
/*
|
347
|
+
@tab Footer
|
348
|
+
@section footer style
|
349
|
+
@tip Set the background color and borders for your email's footer area.
|
350
|
+
*/
|
351
|
+
#templateFooter{
|
352
|
+
/*@editable*/border-top:0;
|
353
|
+
/*@editable*/border-bottom:0;
|
354
|
+
}
|
355
|
+
/*
|
356
|
+
@tab Footer
|
357
|
+
@section footer text
|
358
|
+
@tip Set the styling for your email's footer text. Choose a size and color that is easy to read.
|
359
|
+
*/
|
360
|
+
.footerContainer .mcnTextContent,.footerContainer .mcnTextContent p{
|
361
|
+
/*@editable*/color:#000000;
|
362
|
+
/*@editable*/font-family:Helvetica;
|
363
|
+
/*@editable*/font-size:11px;
|
364
|
+
/*@editable*/line-height:125%;
|
365
|
+
/*@editable*/text-align:center;
|
366
|
+
}
|
367
|
+
/*
|
368
|
+
@tab Footer
|
369
|
+
@section footer link
|
370
|
+
@tip Set the styling for your email's footer links. Choose a color that helps them stand out from your text.
|
371
|
+
*/
|
372
|
+
.footerContainer .mcnTextContent a{
|
373
|
+
/*@editable*/color:#000000;
|
374
|
+
/*@editable*/font-weight:normal;
|
375
|
+
/*@editable*/text-decoration:underline;
|
376
|
+
}
|
377
|
+
@media only screen and (max-width: 480px){
|
378
|
+
body,table,td,p,a,li,blockquote{
|
379
|
+
-webkit-text-size-adjust:none !important;
|
380
|
+
}
|
381
|
+
|
382
|
+
} @media only screen and (max-width: 480px){
|
383
|
+
body{
|
384
|
+
width:100% !important;
|
385
|
+
min-width:100% !important;
|
386
|
+
}
|
387
|
+
|
388
|
+
} @media only screen and (max-width: 480px){
|
389
|
+
#bodyCell{
|
390
|
+
padding-top:10px !important;
|
391
|
+
}
|
392
|
+
|
393
|
+
} @media only screen and (max-width: 480px){
|
394
|
+
.templateContainer{
|
395
|
+
max-width:600px !important;
|
396
|
+
width:100% !important;
|
397
|
+
}
|
398
|
+
|
399
|
+
} @media only screen and (max-width: 480px){
|
400
|
+
.columnsContainer{
|
401
|
+
display:block!important;
|
402
|
+
max-width:600px !important;
|
403
|
+
padding-bottom:18px !important;
|
404
|
+
padding-left:0 !important;
|
405
|
+
width:100%!important;
|
406
|
+
}
|
407
|
+
|
408
|
+
} @media only screen and (max-width: 480px){
|
409
|
+
.mcnRetinaImage{
|
410
|
+
max-width:100% !important;
|
411
|
+
}
|
412
|
+
|
413
|
+
} @media only screen and (max-width: 480px){
|
414
|
+
.mcnImage{
|
415
|
+
height:auto !important;
|
416
|
+
width:100% !important;
|
417
|
+
}
|
418
|
+
|
419
|
+
} @media only screen and (max-width: 480px){
|
420
|
+
.mcnCartContainer,.mcnCaptionTopContent,.mcnRecContentContainer,.mcnCaptionBottomContent,.mcnTextContentContainer,.mcnBoxedTextContentContainer,.mcnImageGroupContentContainer,.mcnCaptionLeftTextContentContainer,.mcnCaptionRightTextContentContainer,.mcnCaptionLeftImageContentContainer,.mcnCaptionRightImageContentContainer,.mcnImageCardLeftTextContentContainer,.mcnImageCardRightTextContentContainer,.mcnImageCardLeftImageContentContainer,.mcnImageCardRightImageContentContainer{
|
421
|
+
max-width:100% !important;
|
422
|
+
width:100% !important;
|
423
|
+
}
|
424
|
+
|
425
|
+
} @media only screen and (max-width: 480px){
|
426
|
+
.mcnBoxedTextContentContainer{
|
427
|
+
min-width:100% !important;
|
428
|
+
}
|
429
|
+
|
430
|
+
} @media only screen and (max-width: 480px){
|
431
|
+
.mcnImageGroupContent{
|
432
|
+
padding:9px !important;
|
433
|
+
}
|
434
|
+
|
435
|
+
} @media only screen and (max-width: 480px){
|
436
|
+
.mcnCaptionLeftContentOuter .mcnTextContent,.mcnCaptionRightContentOuter .mcnTextContent{
|
437
|
+
padding-top:9px !important;
|
438
|
+
}
|
439
|
+
|
440
|
+
} @media only screen and (max-width: 480px){
|
441
|
+
.mcnImageCardTopImageContent,.mcnCaptionBottomContent:last-child .mcnCaptionBottomImageContent,.mcnCaptionBlockInner .mcnCaptionTopContent:last-child .mcnTextContent{
|
442
|
+
padding-top:18px !important;
|
443
|
+
}
|
444
|
+
|
445
|
+
} @media only screen and (max-width: 480px){
|
446
|
+
.mcnImageCardBottomImageContent{
|
447
|
+
padding-bottom:9px !important;
|
448
|
+
}
|
449
|
+
|
450
|
+
} @media only screen and (max-width: 480px){
|
451
|
+
.mcnImageGroupBlockInner{
|
452
|
+
padding-top:0 !important;
|
453
|
+
padding-bottom:0 !important;
|
454
|
+
}
|
455
|
+
|
456
|
+
} @media only screen and (max-width: 480px){
|
457
|
+
.mcnImageGroupBlockOuter{
|
458
|
+
padding-top:9px !important;
|
459
|
+
padding-bottom:9px !important;
|
460
|
+
}
|
461
|
+
|
462
|
+
} @media only screen and (max-width: 480px){
|
463
|
+
.mcnTextContent,.mcnBoxedTextContentColumn{
|
464
|
+
padding-right:18px !important;
|
465
|
+
padding-left:18px !important;
|
466
|
+
}
|
467
|
+
|
468
|
+
} @media only screen and (max-width: 480px){
|
469
|
+
.mcnImageCardLeftImageContent,.mcnImageCardRightImageContent{
|
470
|
+
padding-right:18px !important;
|
471
|
+
padding-bottom:0 !important;
|
472
|
+
padding-left:18px !important;
|
473
|
+
}
|
474
|
+
|
475
|
+
} @media only screen and (max-width: 480px){
|
476
|
+
.mcpreview-image-uploader{
|
477
|
+
display:none !important;
|
478
|
+
width:100% !important;
|
479
|
+
}
|
480
|
+
|
481
|
+
} @media only screen and (max-width: 480px){
|
482
|
+
/*
|
483
|
+
@tab Mobile Styles
|
484
|
+
@section heading 1
|
485
|
+
@tip Make the first-level headings larger in size for better readability on small screens.
|
486
|
+
*/
|
487
|
+
h1{
|
488
|
+
/*@editable*/font-size:24px !important;
|
489
|
+
/*@editable*/line-height:125% !important;
|
490
|
+
}
|
491
|
+
|
492
|
+
} @media only screen and (max-width: 480px){
|
493
|
+
/*
|
494
|
+
@tab Mobile Styles
|
495
|
+
@section heading 2
|
496
|
+
@tip Make the second-level headings larger in size for better readability on small screens.
|
497
|
+
*/
|
498
|
+
h2{
|
499
|
+
/*@editable*/font-size:20px !important;
|
500
|
+
/*@editable*/line-height:125% !important;
|
501
|
+
}
|
502
|
+
|
503
|
+
} @media only screen and (max-width: 480px){
|
504
|
+
/*
|
505
|
+
@tab Mobile Styles
|
506
|
+
@section heading 3
|
507
|
+
@tip Make the third-level headings larger in size for better readability on small screens.
|
508
|
+
*/
|
509
|
+
h3{
|
510
|
+
/*@editable*/font-size:18px !important;
|
511
|
+
/*@editable*/line-height:125% !important;
|
512
|
+
}
|
513
|
+
|
514
|
+
} @media only screen and (max-width: 480px){
|
515
|
+
/*
|
516
|
+
@tab Mobile Styles
|
517
|
+
@section heading 4
|
518
|
+
@tip Make the fourth-level headings larger in size for better readability on small screens.
|
519
|
+
*/
|
520
|
+
h4{
|
521
|
+
/*@editable*/font-size:16px !important;
|
522
|
+
/*@editable*/line-height:125% !important;
|
523
|
+
}
|
524
|
+
|
525
|
+
} @media only screen and (max-width: 480px){
|
526
|
+
/*
|
527
|
+
@tab Mobile Styles
|
528
|
+
@section Boxed Text
|
529
|
+
@tip Make the boxed text larger in size for better readability on small screens. We recommend a font size of at least 16px.
|
530
|
+
*/
|
531
|
+
.mcnBoxedTextContentContainer .mcnTextContent,.mcnBoxedTextContentContainer .mcnTextContent p{
|
532
|
+
/*@editable*/font-size:18px !important;
|
533
|
+
/*@editable*/line-height:125% !important;
|
534
|
+
}
|
535
|
+
|
536
|
+
} @media only screen and (max-width: 480px){
|
537
|
+
/*
|
538
|
+
@tab Mobile Styles
|
539
|
+
@section Preheader Visibility
|
540
|
+
@tip Set the visibility of the email's preheader on small screens. You can hide it to save space.
|
541
|
+
*/
|
542
|
+
#templatePreheader{
|
543
|
+
/*@editable*/display:block !important;
|
544
|
+
}
|
545
|
+
|
546
|
+
} @media only screen and (max-width: 480px){
|
547
|
+
/*
|
548
|
+
@tab Mobile Styles
|
549
|
+
@section Preheader Text
|
550
|
+
@tip Make the preheader text larger in size for better readability on small screens.
|
551
|
+
*/
|
552
|
+
.preheaderContainer .mcnTextContent,.preheaderContainer .mcnTextContent p{
|
553
|
+
/*@editable*/font-size:14px !important;
|
554
|
+
/*@editable*/line-height:115% !important;
|
555
|
+
}
|
556
|
+
|
557
|
+
} @media only screen and (max-width: 480px){
|
558
|
+
/*
|
559
|
+
@tab Mobile Styles
|
560
|
+
@section Header Text
|
561
|
+
@tip Make the header text larger in size for better readability on small screens.
|
562
|
+
*/
|
563
|
+
.headerContainer .mcnTextContent,.headerContainer .mcnTextContent p{
|
564
|
+
/*@editable*/font-size:18px !important;
|
565
|
+
/*@editable*/line-height:125% !important;
|
566
|
+
}
|
567
|
+
|
568
|
+
} @media only screen and (max-width: 480px){
|
569
|
+
/*
|
570
|
+
@tab Mobile Styles
|
571
|
+
@section Body Text
|
572
|
+
@tip Make the body text larger in size for better readability on small screens. We recommend a font size of at least 16px.
|
573
|
+
*/
|
574
|
+
.bodyContainer .mcnTextContent,.bodyContainer .mcnTextContent p{
|
575
|
+
/*@editable*/font-size:18px !important;
|
576
|
+
/*@editable*/line-height:125% !important;
|
577
|
+
}
|
578
|
+
|
579
|
+
} @media only screen and (max-width: 480px){
|
580
|
+
/*
|
581
|
+
@tab Mobile Styles
|
582
|
+
@section Left Column Text
|
583
|
+
@tip Make the left column text larger in size for better readability on small screens. We recommend a font size of at least 16px.
|
584
|
+
*/
|
585
|
+
.leftColumnContainer .mcnTextContent,.leftColumnContainer .mcnTextContent p{
|
586
|
+
/*@editable*/font-size:18px !important;
|
587
|
+
/*@editable*/line-height:125% !important;
|
588
|
+
}
|
589
|
+
|
590
|
+
} @media only screen and (max-width: 480px){
|
591
|
+
/*
|
592
|
+
@tab Mobile Styles
|
593
|
+
@section Right Column Text
|
594
|
+
@tip Make the right column text larger in size for better readability on small screens. We recommend a font size of at least 16px.
|
595
|
+
*/
|
596
|
+
.rightColumnContainer .mcnTextContent,.rightColumnContainer .mcnTextContent p{
|
597
|
+
/*@editable*/font-size:18px !important;
|
598
|
+
/*@editable*/line-height:125% !important;
|
599
|
+
}
|
600
|
+
|
601
|
+
} @media only screen and (max-width: 480px){
|
602
|
+
/*
|
603
|
+
@tab Mobile Styles
|
604
|
+
@section footer text
|
605
|
+
@tip Make the body content text larger in size for better readability on small screens.
|
606
|
+
*/
|
607
|
+
.footerContainer .mcnTextContent,.footerContainer .mcnTextContent p{
|
608
|
+
/*@editable*/font-size:14px !important;
|
609
|
+
/*@editable*/line-height:115% !important;
|
610
|
+
}
|
611
|
+
|
612
|
+
}</style></head>
|
613
|
+
<body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">
|
614
|
+
<!--*|IF:MC_PREVIEW_TEXT|*-->
|
615
|
+
<!--[if !gte mso 9]><!----><span class="mcnPreviewText" style="display:none; font-size:0px; line-height:0px; max-height:0px; max-width:0px; opacity:0; overflow:hidden; visibility:hidden; mso-hide:all;">Merry Christmas!</span><!--<![endif]-->
|
616
|
+
<!--*|END:IF|*-->
|
617
|
+
<center>
|
618
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable">
|
619
|
+
<tr>
|
620
|
+
<td align="center" valign="top" id="bodyCell">
|
621
|
+
<!-- BEGIN TEMPLATE // -->
|
622
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
623
|
+
|
624
|
+
<tr>
|
625
|
+
<td align="center" valign="top">
|
626
|
+
<!-- BEGIN BODY // -->
|
627
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="templateBody">
|
628
|
+
<tr>
|
629
|
+
<td align="center" valign="top">
|
630
|
+
<table border="0" cellpadding="0" cellspacing="0" width="600" class="templateContainer">
|
631
|
+
<tr>
|
632
|
+
<td valign="top" class="bodyContainer" style="padding-top:10px; padding-bottom:10px;"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
633
|
+
<tbody class="mcnTextBlockOuter">
|
634
|
+
<tr>
|
635
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
636
|
+
<!--[if mso]>
|
637
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
638
|
+
<tr>
|
639
|
+
<![endif]-->
|
640
|
+
|
641
|
+
<!--[if mso]>
|
642
|
+
<td valign="top" width="600" style="width:600px;">
|
643
|
+
<![endif]-->
|
644
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
645
|
+
<tbody>
|
646
|
+
<tr>
|
647
|
+
<td valign="top" class="mcnTextContent" style="text-align: center; padding: 0px 18px 9px;color: #EE2F2F;font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;font-size: 36px;font-style: italic;font-weight: normal;">
|
648
|
+
<center>
|
649
|
+
Ho, ho, ho!<br>
|
650
|
+
Wishing you a Merry Christmas<br>
|
651
|
+
from WasyaCo!
|
652
|
+
</center>
|
653
|
+
</td>
|
654
|
+
</tr>
|
655
|
+
</tbody></table>
|
656
|
+
<!--[if mso]>
|
657
|
+
</td>
|
658
|
+
<![endif]-->
|
659
|
+
|
660
|
+
<!--[if mso]>
|
661
|
+
</tr>
|
662
|
+
</table>
|
663
|
+
<![endif]-->
|
664
|
+
</td>
|
665
|
+
</tr>
|
666
|
+
</tbody>
|
667
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageCardBlock">
|
668
|
+
<tbody class="mcnImageCardBlockOuter">
|
669
|
+
<tr>
|
670
|
+
<td class="mcnImageCardBlockInner" valign="top" style="padding-top:9px; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
671
|
+
|
672
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" class="mcnImageCardBottomContent" width="100%">
|
673
|
+
<tbody><tr>
|
674
|
+
<td class="mcnImageCardBottomImageContent" align="center" valign="top"
|
675
|
+
style="padding-top:0px; padding-right:0px; padding-bottom:0; padding-left:0px; border: 1px solid #cecece;"
|
676
|
+
width="564" height="676" >
|
677
|
+
|
678
|
+
|
679
|
+
|
680
|
+
<img alt="A cool meme pic" src="https://mcusercontent.com/c1c0b5d8d2e0e77bfc4d6376e/images/f51d3176-659a-e1ef-35fd-ea33186ba6b0.jpeg"
|
681
|
+
width="564" style="max-width: 689px; border-radius: 0%;" class="mcnImage">
|
682
|
+
|
683
|
+
|
684
|
+
</td>
|
685
|
+
</tr>
|
686
|
+
<tr>
|
687
|
+
<td class="mcnTextContent" valign="top" style="padding: 9px 18px;color: #FFFFFF;font-size: 16px;font-weight: bold;text-align: center;" width="546">
|
688
|
+
|
689
|
+
</td>
|
690
|
+
</tr>
|
691
|
+
</tbody></table>
|
692
|
+
|
693
|
+
|
694
|
+
|
695
|
+
|
696
|
+
</td>
|
697
|
+
</tr>
|
698
|
+
</tbody>
|
699
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
700
|
+
<tbody class="mcnTextBlockOuter">
|
701
|
+
<tr>
|
702
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
703
|
+
<!--[if mso]>
|
704
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
705
|
+
<tr>
|
706
|
+
<![endif]-->
|
707
|
+
|
708
|
+
<!--[if mso]>
|
709
|
+
<td valign="top" width="600" style="width:600px;">
|
710
|
+
<![endif]-->
|
711
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
712
|
+
<tbody><tr>
|
713
|
+
|
714
|
+
<td valign="top" class="mcnTextContent" style="padding: 0px 18px 9px;color: #B2B2B2;font-size: 14px;font-style: italic;font-weight: normal; text-align: center;">
|
715
|
+
<center>
|
716
|
+
(We provide software development and other technology services, <br />but this post card is all about celebration of Giving and Rebirth.)
|
717
|
+
</center>
|
718
|
+
</td>
|
719
|
+
</tr>
|
720
|
+
</tbody></table>
|
721
|
+
<!--[if mso]>
|
722
|
+
</td>
|
723
|
+
<![endif]-->
|
724
|
+
|
725
|
+
<!--[if mso]>
|
726
|
+
</tr>
|
727
|
+
</table>
|
728
|
+
<![endif]-->
|
729
|
+
</td>
|
730
|
+
</tr>
|
731
|
+
</tbody>
|
732
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
|
733
|
+
<tbody class="mcnImageBlockOuter">
|
734
|
+
<tr>
|
735
|
+
<td valign="top" style="padding:9px" class="mcnImageBlockInner">
|
736
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
|
737
|
+
<tbody><tr>
|
738
|
+
<td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
|
739
|
+
<a href="https://wasya.co/our-process?<%= @click_tracking %>" >
|
740
|
+
<img align="center" alt="WasyaCo" src="https://mcusercontent.com/c1c0b5d8d2e0e77bfc4d6376e/images/acb2ec6e-6513-b384-ba8f-41e1195b6011.png" width="136.21" style="max-width:257px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
|
741
|
+
</a>
|
742
|
+
</td>
|
743
|
+
</tr>
|
744
|
+
</tbody></table>
|
745
|
+
</td>
|
746
|
+
</tr>
|
747
|
+
</tbody>
|
748
|
+
</table></td>
|
749
|
+
</tr>
|
750
|
+
</table>
|
751
|
+
</td>
|
752
|
+
</tr>
|
753
|
+
</table>
|
754
|
+
<!-- // END BODY -->
|
755
|
+
</td>
|
756
|
+
</tr>
|
757
|
+
</table>
|
758
|
+
<!-- // END TEMPLATE -->
|
759
|
+
</td>
|
760
|
+
</tr>
|
761
|
+
</table>
|
762
|
+
</center>
|
763
|
+
<img src="https://www.google-analytics.com/collect?<%= @pixel_tracking %>" />
|
764
|
+
</html>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ish_manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.8.
|
4
|
+
version: 0.1.8.346
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- piousbox
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -332,6 +332,7 @@ files:
|
|
332
332
|
- app/views/ish_manager/email_templates/_form_mini.haml
|
333
333
|
- app/views/ish_manager/email_templates/_index.haml
|
334
334
|
- app/views/ish_manager/email_templates/_m20221201react.html.erb
|
335
|
+
- app/views/ish_manager/email_templates/_m20221222merryxmas.html.erb
|
335
336
|
- app/views/ish_manager/email_templates/_marketing_react_1.html
|
336
337
|
- app/views/ish_manager/email_templates/_marketing_ror_1.html
|
337
338
|
- app/views/ish_manager/email_templates/_marketing_ror_2.html.erb
|