wco_email 0.1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.txt +129 -0
- data/Rakefile +5 -0
- data/app/assets/config/wco_email_manifest.js +7 -0
- data/app/assets/javascript/vendor-trash/jquery-ui.min.js +13 -0
- data/app/assets/javascript/vendor-trash/jquery.fileupload.js +1482 -0
- data/app/assets/javascript/vendor-trash/jquery.iframe-transport.js +224 -0
- data/app/assets/javascript/vendor-trash/jquery.ui.widget.js +572 -0
- data/app/assets/javascript/vendor-trash/summernote-bs4.min.js +3 -0
- data/app/assets/javascript/wco_email/application.js +11 -0
- data/app/assets/javascript/wco_email/contexts.js +19 -0
- data/app/assets/javascript/wco_email/conversations.js +177 -0
- data/app/assets/javascript/wco_email/file_upload.js-trash +32 -0
- data/app/assets/javascript/wco_email/shared.js +22 -0
- data/app/assets/stylesheets/wco_email/application.scss +29 -0
- data/app/assets/stylesheets/wco_email/contexts.scss +63 -0
- data/app/assets/stylesheets/wco_email/conversations.scss +16 -0
- data/app/assets/stylesheets/wco_email/tags.scss +6 -0
- data/app/controllers/wco_email/application_controller.rb +16 -0
- data/app/controllers/wco_email/contexts_controller.rb +156 -0
- data/app/controllers/wco_email/conversations_controller.rb +129 -0
- data/app/controllers/wco_email/email_action_templates_controller.rb +77 -0
- data/app/controllers/wco_email/email_actions_controller.rb +55 -0
- data/app/controllers/wco_email/email_campaigns_controller.rb +73 -0
- data/app/controllers/wco_email/email_filters_controller.rb +72 -0
- data/app/controllers/wco_email/email_layouts_controller.rb +13 -0
- data/app/controllers/wco_email/email_templates_controller.rb +124 -0
- data/app/controllers/wco_email/message_stubs_controller.rb +14 -0
- data/app/controllers/wco_email/messages_controller.rb +28 -0
- data/app/controllers/wco_email/obfuscated_redirects_controller.rb +20 -0
- data/app/controllers/wco_email/sessions_controller.rb +19 -0
- data/app/controllers/wco_email/unsubscribes_controller.rb +40 -0
- data/app/helpers/wco_email/application_helper.rb +20 -0
- data/app/jobs/wco_email/message_intake_job.rb +54 -0
- data/app/mailers/wco_email/application_mailer.rb +98 -0
- data/app/views/202212 Mailchimp Templates/202212 1col fixed-width.html +863 -0
- data/app/views/202212 Mailchimp Templates/202212 1col full-width.html +906 -0
- data/app/views/202212 Mailchimp Templates/202212 2col fixed-width 2.html +1003 -0
- data/app/views/202212 Mailchimp Templates/202212 2col fixed-width.html +1082 -0
- data/app/views/202212 Mailchimp Templates/202212 2col full-width 2.html +1053 -0
- data/app/views/202212 Mailchimp Templates/202212 2col full-width.html +1147 -0
- data/app/views/202212 Mailchimp Templates/202212 3col fixed-width.html +1087 -0
- data/app/views/202212 Mailchimp Templates/202212 3col full-width.html +1136 -0
- data/app/views/202212 Mailchimp Templates/202212 catalog various-colors-1.html +1223 -0
- data/app/views/202212 Mailchimp Templates/202212 educate.html +1080 -0
- data/app/views/202212 Mailchimp Templates/202212 follow up.html +1001 -0
- data/app/views/202212 Mailchimp Templates/202212 make an announcement.html +1048 -0
- data/app/views/202212 Mailchimp Templates/202212 sell-a-product.html +977 -0
- data/app/views/202212 Mailchimp Templates/202212 tell a story.html +1168 -0
- data/app/views/202212 Mailchimp Templates/202212 theme art-newsletter.html +1612 -0
- data/app/views/202212 Mailchimp Templates/202212 theme caribou-xmas.html +856 -0
- data/app/views/202212 Mailchimp Templates/202212 theme colorbox.html +1027 -0
- data/app/views/202212 Mailchimp Templates/202212 theme competition-invitation.html +918 -0
- data/app/views/202212 Mailchimp Templates/202212 theme event-veerle.html +1132 -0
- data/app/views/202212 Mailchimp Templates/202212 theme fall-colors.html +1407 -0
- data/app/views/202212 Mailchimp Templates/202212 theme gift-giving.html +787 -0
- data/app/views/202212 Mailchimp Templates/202212 theme giftgiving-snowmen.html +731 -0
- data/app/views/202212 Mailchimp Templates/202212 theme heart-of-flowers.html +795 -0
- data/app/views/202212 Mailchimp Templates/202212 theme hero-card.html +915 -0
- data/app/views/202212 Mailchimp Templates/202212 theme hero-image.html +1148 -0
- data/app/views/202212 Mailchimp Templates/202212 theme monthly-contest.html +967 -0
- data/app/views/202212 Mailchimp Templates/202212 theme multiple-event.html +1189 -0
- data/app/views/202212 Mailchimp Templates/202212 theme postcard.html +914 -0
- data/app/views/202212 Mailchimp Templates/202212 theme snowy-fields.html +733 -0
- data/app/views/202212 Mailchimp Templates/202212 theme soft.html +849 -0
- data/app/views/202212 Mailchimp Templates/202212 theme sophisticated.html +1079 -0
- data/app/views/202212 Mailchimp Templates/202212 theme subtle.html +1218 -0
- data/app/views/202212 Mailchimp Templates/202212 theme ticket.html +1015 -0
- data/app/views/202212 Mailchimp Templates/202212 theme whale.html +888 -0
- data/app/views/202310 Email Templates/_acknowledgement_of_document_receipt.html.erb +23 -0
- data/app/views/202310 Email Templates/_support_ticket_created.html.erb +26 -0
- data/app/views/layouts/wco_email/application.haml +64 -0
- data/app/views/layouts/wco_email/mailbox.haml-trash +62 -0
- data/app/views/wco_email/_analytics.erb +16 -0
- data/app/views/wco_email/_main_header.haml +31 -0
- data/app/views/wco_email/_sidebar.haml +10 -0
- data/app/views/wco_email/application_mailer/_footer_unsubscribe.html.erb +24 -0
- data/app/views/wco_email/application_mailer/_header_logo.html.erb +12 -0
- data/app/views/wco_email/application_mailer/forwarder_notify.html.erb +17 -0
- data/app/views/wco_email/contexts/_form.haml +59 -0
- data/app/views/wco_email/contexts/_form_reply.haml +27 -0
- data/app/views/wco_email/contexts/_header.haml +22 -0
- data/app/views/wco_email/contexts/_index.haml +8 -0
- data/app/views/wco_email/contexts/edit.haml +8 -0
- data/app/views/wco_email/contexts/iframe_src.haml +3 -0
- data/app/views/wco_email/contexts/index.haml +51 -0
- data/app/views/wco_email/contexts/new.haml +5 -0
- data/app/views/wco_email/contexts/show.haml +34 -0
- data/app/views/wco_email/contexts/summary.csv.erb +4 -0
- data/app/views/wco_email/contexts/summary.haml +16 -0
- data/app/views/wco_email/conversations/_actions.haml +21 -0
- data/app/views/wco_email/conversations/_search.haml +14 -0
- data/app/views/wco_email/conversations/index.haml +43 -0
- data/app/views/wco_email/conversations/show.haml +27 -0
- data/app/views/wco_email/email_action_templates/_form.haml +45 -0
- data/app/views/wco_email/email_action_templates/_header.haml +8 -0
- data/app/views/wco_email/email_action_templates/edit.haml +7 -0
- data/app/views/wco_email/email_action_templates/index.haml +36 -0
- data/app/views/wco_email/email_action_templates/new.haml +9 -0
- data/app/views/wco_email/email_action_templates/show.haml +11 -0
- data/app/views/wco_email/email_actions/_form.haml +24 -0
- data/app/views/wco_email/email_actions/_form_mini.haml-trash +28 -0
- data/app/views/wco_email/email_actions/_header.haml +8 -0
- data/app/views/wco_email/email_actions/edit.haml +4 -0
- data/app/views/wco_email/email_actions/index.haml +31 -0
- data/app/views/wco_email/email_actions/new.haml +4 -0
- data/app/views/wco_email/email_actions/show.haml +0 -0
- data/app/views/wco_email/email_campaigns/_form.haml +33 -0
- data/app/views/wco_email/email_campaigns/_header.haml +5 -0
- data/app/views/wco_email/email_campaigns/edit.haml +5 -0
- data/app/views/wco_email/email_campaigns/index.haml +14 -0
- data/app/views/wco_email/email_campaigns/new.haml +5 -0
- data/app/views/wco_email/email_campaigns/show.haml +17 -0
- data/app/views/wco_email/email_filters/_form.haml +40 -0
- data/app/views/wco_email/email_filters/_header.haml +5 -0
- data/app/views/wco_email/email_filters/edit.haml +5 -0
- data/app/views/wco_email/email_filters/index.haml +48 -0
- data/app/views/wco_email/email_filters/new.haml +5 -0
- data/app/views/wco_email/email_templates/_form.haml +48 -0
- data/app/views/wco_email/email_templates/_form_mini.haml +9 -0
- data/app/views/wco_email/email_templates/_form_reply_mini.haml +8 -0
- data/app/views/wco_email/email_templates/_form_schedule_mini.haml +11 -0
- data/app/views/wco_email/email_templates/_header.haml +6 -0
- data/app/views/wco_email/email_templates/_index.haml +26 -0
- data/app/views/wco_email/email_templates/_index_expanded.haml +13 -0
- data/app/views/wco_email/email_templates/_m20221201react.html.erb +1202 -0
- data/app/views/wco_email/email_templates/_m20221222merryxmas.html.erb +766 -0
- data/app/views/wco_email/email_templates/_m202309_feedback.html.erb +1161 -0
- data/app/views/wco_email/email_templates/_m202309_ror4.html.erb +1068 -0
- data/app/views/wco_email/email_templates/_marketing_node_1.html.erb +984 -0
- data/app/views/wco_email/email_templates/_marketing_react_1.html +0 -0
- data/app/views/wco_email/email_templates/_marketing_react_2.html.erb +749 -0
- data/app/views/wco_email/email_templates/_marketing_react_3.html.erb +628 -0
- data/app/views/wco_email/email_templates/_marketing_ror_1.html +751 -0
- data/app/views/wco_email/email_templates/_marketing_ror_2.html.erb +755 -0
- data/app/views/wco_email/email_templates/_marketing_ror_3.html.erb +25 -0
- data/app/views/wco_email/email_templates/_marketing_ror_4.html.erb +25 -0
- data/app/views/wco_email/email_templates/_marketing_ror_5.html.erb +17 -0
- data/app/views/wco_email/email_templates/_marketing_wordpress_1.html +0 -0
- data/app/views/wco_email/email_templates/_marketing_wordpress_2.html +0 -0
- data/app/views/wco_email/email_templates/_meta.haml +6 -0
- data/app/views/wco_email/email_templates/_piousbox_roundborders.html.erb +1007 -0
- data/app/views/wco_email/email_templates/_piousbox_social.html.erb +181 -0
- data/app/views/wco_email/email_templates/_plain.haml +15 -0
- data/app/views/wco_email/email_templates/_rec_resume_shared_with_you.html.erb +39 -0
- data/app/views/wco_email/email_templates/_slug-1.html.erb +0 -0
- data/app/views/wco_email/email_templates/_slug-2.html.erb +0 -0
- data/app/views/wco_email/email_templates/_slug-3.html.erb +0 -0
- data/app/views/wco_email/email_templates/_tracking_footer.html.erb +13 -0
- data/app/views/wco_email/email_templates/_wasyaco_roundborders.html.erb +686 -0
- data/app/views/wco_email/email_templates/_wasyaco_social.html.erb +181 -0
- data/app/views/wco_email/email_templates/edit.haml +6 -0
- data/app/views/wco_email/email_templates/new.haml +6 -0
- data/app/views/wco_email/email_templates/show.haml +11 -0
- data/app/views/wco_email/email_templates/show_iframe.haml +2 -0
- data/app/views/wco_email/lead_action_templates/_header.haml +7 -0
- data/app/views/wco_email/lead_actions/_header.haml +8 -0
- data/app/views/wco_email/message_stubs/_index.haml +10 -0
- data/app/views/wco_email/messages/_form_reply.haml-trash +17 -0
- data/app/views/wco_email/messages/_meta.haml +30 -0
- data/app/views/wco_email/messages/show.haml +13 -0
- data/app/views/wco_email/messages/show_iframe.haml +5 -0
- data/app/views/wco_email/sessions/new.html.erb +4 -0
- data/app/views/wco_email/unsubscribes/_header.haml +4 -0
- data/app/views/wco_email/unsubscribes/_table.haml +22 -0
- data/config/initializers/assets.rb +10 -0
- data/config/routes.rb +49 -0
- data/lib/tasks/bjjcollective/sitemap.rb +50 -0
- data/lib/tasks/db_tasks.rake +12 -0
- data/lib/tasks/direct_mail_tasks.rake +35 -0
- data/lib/tasks/infinite_shelter/sitemap.rb +25 -0
- data/lib/tasks/piousbox/sitemap.rb +80 -0
- data/lib/tasks/publish2_wordpress_tasks.rake +54 -0
- data/lib/tasks/scrape_reddit_tasks.rake-bk +23 -0
- data/lib/tasks/trash/email_tasks.rake-trash +126 -0
- data/lib/tasks/trash/sitemap_tasks.rake-trash +146 -0
- data/lib/tasks/wasya_co/sitemap.rb +281 -0
- data/lib/tasks/wco_email_tasks.rake +117 -0
- data/lib/wco_email/README_email_actions.rb +7 -0
- data/lib/wco_email/README_email_contexts.rb +7 -0
- data/lib/wco_email/engine.rb +8 -0
- data/lib/wco_email.rb +19 -0
- metadata +493 -0
@@ -0,0 +1,1001 @@
|
|
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: FOLLOW UP -->
|
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>*|MC:SUBJECT|*</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
|
+
.templateContainer{
|
86
|
+
max-width:600px !important;
|
87
|
+
}
|
88
|
+
a.mcnButton{
|
89
|
+
display:block;
|
90
|
+
}
|
91
|
+
.mcnImage,.mcnRetinaImage{
|
92
|
+
vertical-align:bottom;
|
93
|
+
}
|
94
|
+
.mcnTextContent{
|
95
|
+
word-break:break-word;
|
96
|
+
}
|
97
|
+
.mcnTextContent img{
|
98
|
+
height:auto !important;
|
99
|
+
}
|
100
|
+
.mcnDividerBlock{
|
101
|
+
table-layout:fixed !important;
|
102
|
+
}
|
103
|
+
/*
|
104
|
+
@tab Page
|
105
|
+
@section Heading 1
|
106
|
+
@style heading 1
|
107
|
+
*/
|
108
|
+
h1{
|
109
|
+
/*@editable*/color:#222222;
|
110
|
+
/*@editable*/font-family:Helvetica;
|
111
|
+
/*@editable*/font-size:40px;
|
112
|
+
/*@editable*/font-style:normal;
|
113
|
+
/*@editable*/font-weight:bold;
|
114
|
+
/*@editable*/line-height:150%;
|
115
|
+
/*@editable*/letter-spacing:normal;
|
116
|
+
/*@editable*/text-align:center;
|
117
|
+
}
|
118
|
+
/*
|
119
|
+
@tab Page
|
120
|
+
@section Heading 2
|
121
|
+
@style heading 2
|
122
|
+
*/
|
123
|
+
h2{
|
124
|
+
/*@editable*/color:#222222;
|
125
|
+
/*@editable*/font-family:Helvetica;
|
126
|
+
/*@editable*/font-size:34px;
|
127
|
+
/*@editable*/font-style:normal;
|
128
|
+
/*@editable*/font-weight:bold;
|
129
|
+
/*@editable*/line-height:150%;
|
130
|
+
/*@editable*/letter-spacing:normal;
|
131
|
+
/*@editable*/text-align:left;
|
132
|
+
}
|
133
|
+
/*
|
134
|
+
@tab Page
|
135
|
+
@section Heading 3
|
136
|
+
@style heading 3
|
137
|
+
*/
|
138
|
+
h3{
|
139
|
+
/*@editable*/color:#444444;
|
140
|
+
/*@editable*/font-family:Helvetica;
|
141
|
+
/*@editable*/font-size:22px;
|
142
|
+
/*@editable*/font-style:normal;
|
143
|
+
/*@editable*/font-weight:bold;
|
144
|
+
/*@editable*/line-height:150%;
|
145
|
+
/*@editable*/letter-spacing:normal;
|
146
|
+
/*@editable*/text-align:center;
|
147
|
+
}
|
148
|
+
/*
|
149
|
+
@tab Page
|
150
|
+
@section Heading 4
|
151
|
+
@style heading 4
|
152
|
+
*/
|
153
|
+
h4{
|
154
|
+
/*@editable*/color:#949494;
|
155
|
+
/*@editable*/font-family:Georgia;
|
156
|
+
/*@editable*/font-size:20px;
|
157
|
+
/*@editable*/font-style:italic;
|
158
|
+
/*@editable*/font-weight:normal;
|
159
|
+
/*@editable*/line-height:125%;
|
160
|
+
/*@editable*/letter-spacing:normal;
|
161
|
+
/*@editable*/text-align:left;
|
162
|
+
}
|
163
|
+
/*
|
164
|
+
@tab Header
|
165
|
+
@section Header Container Style
|
166
|
+
*/
|
167
|
+
#templateHeader{
|
168
|
+
/*@editable*/background-color:#F7F7F7;
|
169
|
+
/*@editable*/background-image:none;
|
170
|
+
/*@editable*/background-repeat:no-repeat;
|
171
|
+
/*@editable*/background-position:center;
|
172
|
+
/*@editable*/background-size:cover;
|
173
|
+
/*@editable*/border-top:0;
|
174
|
+
/*@editable*/border-bottom:0;
|
175
|
+
/*@editable*/padding-top:54px;
|
176
|
+
/*@editable*/padding-bottom:54px;
|
177
|
+
}
|
178
|
+
/*
|
179
|
+
@tab Header
|
180
|
+
@section Header Interior Style
|
181
|
+
*/
|
182
|
+
.headerContainer{
|
183
|
+
/*@editable*/background-color:transparent;
|
184
|
+
/*@editable*/background-image:none;
|
185
|
+
/*@editable*/background-repeat:no-repeat;
|
186
|
+
/*@editable*/background-position:center;
|
187
|
+
/*@editable*/background-size:cover;
|
188
|
+
/*@editable*/border-top:0;
|
189
|
+
/*@editable*/border-bottom:0;
|
190
|
+
/*@editable*/padding-top:0;
|
191
|
+
/*@editable*/padding-bottom:0;
|
192
|
+
}
|
193
|
+
/*
|
194
|
+
@tab Header
|
195
|
+
@section Header Text
|
196
|
+
*/
|
197
|
+
.headerContainer .mcnTextContent,.headerContainer .mcnTextContent p{
|
198
|
+
/*@editable*/color:#757575;
|
199
|
+
/*@editable*/font-family:Helvetica;
|
200
|
+
/*@editable*/font-size:16px;
|
201
|
+
/*@editable*/line-height:150%;
|
202
|
+
/*@editable*/text-align:left;
|
203
|
+
}
|
204
|
+
/*
|
205
|
+
@tab Header
|
206
|
+
@section Header Link
|
207
|
+
*/
|
208
|
+
.headerContainer .mcnTextContent a,.headerContainer .mcnTextContent p a{
|
209
|
+
/*@editable*/color:#007C89;
|
210
|
+
/*@editable*/font-weight:normal;
|
211
|
+
/*@editable*/text-decoration:underline;
|
212
|
+
}
|
213
|
+
/*
|
214
|
+
@tab Body
|
215
|
+
@section Body Container Style
|
216
|
+
*/
|
217
|
+
#templateBody{
|
218
|
+
/*@editable*/background-color:#FFFFFF;
|
219
|
+
/*@editable*/background-image:none;
|
220
|
+
/*@editable*/background-repeat:no-repeat;
|
221
|
+
/*@editable*/background-position:center;
|
222
|
+
/*@editable*/background-size:cover;
|
223
|
+
/*@editable*/border-top:0;
|
224
|
+
/*@editable*/border-bottom:0;
|
225
|
+
/*@editable*/padding-top:27px;
|
226
|
+
/*@editable*/padding-bottom:54px;
|
227
|
+
}
|
228
|
+
/*
|
229
|
+
@tab Body
|
230
|
+
@section Body Interior Style
|
231
|
+
*/
|
232
|
+
.bodyContainer{
|
233
|
+
/*@editable*/background-color:transparent;
|
234
|
+
/*@editable*/background-image:none;
|
235
|
+
/*@editable*/background-repeat:no-repeat;
|
236
|
+
/*@editable*/background-position:center;
|
237
|
+
/*@editable*/background-size:cover;
|
238
|
+
/*@editable*/border-top:0;
|
239
|
+
/*@editable*/border-bottom:0;
|
240
|
+
/*@editable*/padding-top:0;
|
241
|
+
/*@editable*/padding-bottom:0;
|
242
|
+
}
|
243
|
+
/*
|
244
|
+
@tab Body
|
245
|
+
@section Body Text
|
246
|
+
*/
|
247
|
+
.bodyContainer .mcnTextContent,.bodyContainer .mcnTextContent p{
|
248
|
+
/*@editable*/color:#757575;
|
249
|
+
/*@editable*/font-family:Helvetica;
|
250
|
+
/*@editable*/font-size:16px;
|
251
|
+
/*@editable*/line-height:150%;
|
252
|
+
/*@editable*/text-align:left;
|
253
|
+
}
|
254
|
+
/*
|
255
|
+
@tab Body
|
256
|
+
@section Body Link
|
257
|
+
*/
|
258
|
+
.bodyContainer .mcnTextContent a,.bodyContainer .mcnTextContent p a{
|
259
|
+
/*@editable*/color:#007C89;
|
260
|
+
/*@editable*/font-weight:normal;
|
261
|
+
/*@editable*/text-decoration:underline;
|
262
|
+
}
|
263
|
+
/*
|
264
|
+
@tab Footer
|
265
|
+
@section Footer Style
|
266
|
+
*/
|
267
|
+
#templateFooter{
|
268
|
+
/*@editable*/background-color:#333333;
|
269
|
+
/*@editable*/background-image:none;
|
270
|
+
/*@editable*/background-repeat:no-repeat;
|
271
|
+
/*@editable*/background-position:center;
|
272
|
+
/*@editable*/background-size:cover;
|
273
|
+
/*@editable*/border-top:0;
|
274
|
+
/*@editable*/border-bottom:0;
|
275
|
+
/*@editable*/padding-top:45px;
|
276
|
+
/*@editable*/padding-bottom:63px;
|
277
|
+
}
|
278
|
+
/*
|
279
|
+
@tab Footer
|
280
|
+
@section Footer Interior Style
|
281
|
+
*/
|
282
|
+
.footerContainer{
|
283
|
+
/*@editable*/background-color:transparent;
|
284
|
+
/*@editable*/background-image:none;
|
285
|
+
/*@editable*/background-repeat:no-repeat;
|
286
|
+
/*@editable*/background-position:center;
|
287
|
+
/*@editable*/background-size:cover;
|
288
|
+
/*@editable*/border-top:0;
|
289
|
+
/*@editable*/border-bottom:0;
|
290
|
+
/*@editable*/padding-top:0;
|
291
|
+
/*@editable*/padding-bottom:0;
|
292
|
+
}
|
293
|
+
/*
|
294
|
+
@tab Footer
|
295
|
+
@section Footer Text
|
296
|
+
*/
|
297
|
+
.footerContainer .mcnTextContent,.footerContainer .mcnTextContent p{
|
298
|
+
/*@editable*/color:#FFFFFF;
|
299
|
+
/*@editable*/font-family:Helvetica;
|
300
|
+
/*@editable*/font-size:12px;
|
301
|
+
/*@editable*/line-height:150%;
|
302
|
+
/*@editable*/text-align:center;
|
303
|
+
}
|
304
|
+
/*
|
305
|
+
@tab Footer
|
306
|
+
@section Footer Link
|
307
|
+
*/
|
308
|
+
.footerContainer .mcnTextContent a,.footerContainer .mcnTextContent p a{
|
309
|
+
/*@editable*/color:#FFFFFF;
|
310
|
+
/*@editable*/font-weight:normal;
|
311
|
+
/*@editable*/text-decoration:underline;
|
312
|
+
}
|
313
|
+
@media only screen and (min-width:768px){
|
314
|
+
.templateContainer{
|
315
|
+
width:600px !important;
|
316
|
+
}
|
317
|
+
|
318
|
+
} @media only screen and (max-width: 480px){
|
319
|
+
body,table,td,p,a,li,blockquote{
|
320
|
+
-webkit-text-size-adjust:none !important;
|
321
|
+
}
|
322
|
+
|
323
|
+
} @media only screen and (max-width: 480px){
|
324
|
+
body{
|
325
|
+
width:100% !important;
|
326
|
+
min-width:100% !important;
|
327
|
+
}
|
328
|
+
|
329
|
+
} @media only screen and (max-width: 480px){
|
330
|
+
.mcnRetinaImage{
|
331
|
+
max-width:100% !important;
|
332
|
+
}
|
333
|
+
|
334
|
+
} @media only screen and (max-width: 480px){
|
335
|
+
.mcnImage{
|
336
|
+
width:100% !important;
|
337
|
+
}
|
338
|
+
|
339
|
+
} @media only screen and (max-width: 480px){
|
340
|
+
.mcnCartContainer,.mcnCaptionTopContent,.mcnRecContentContainer,.mcnCaptionBottomContent,.mcnTextContentContainer,.mcnBoxedTextContentContainer,.mcnImageGroupContentContainer,.mcnCaptionLeftTextContentContainer,.mcnCaptionRightTextContentContainer,.mcnCaptionLeftImageContentContainer,.mcnCaptionRightImageContentContainer,.mcnImageCardLeftTextContentContainer,.mcnImageCardRightTextContentContainer,.mcnImageCardLeftImageContentContainer,.mcnImageCardRightImageContentContainer{
|
341
|
+
max-width:100% !important;
|
342
|
+
width:100% !important;
|
343
|
+
}
|
344
|
+
|
345
|
+
} @media only screen and (max-width: 480px){
|
346
|
+
.mcnBoxedTextContentContainer{
|
347
|
+
min-width:100% !important;
|
348
|
+
}
|
349
|
+
|
350
|
+
} @media only screen and (max-width: 480px){
|
351
|
+
.mcnImageGroupContent{
|
352
|
+
padding:9px !important;
|
353
|
+
}
|
354
|
+
|
355
|
+
} @media only screen and (max-width: 480px){
|
356
|
+
.mcnCaptionLeftContentOuter .mcnTextContent,.mcnCaptionRightContentOuter .mcnTextContent{
|
357
|
+
padding-top:9px !important;
|
358
|
+
}
|
359
|
+
|
360
|
+
} @media only screen and (max-width: 480px){
|
361
|
+
.mcnImageCardTopImageContent,.mcnCaptionBottomContent:last-child .mcnCaptionBottomImageContent,.mcnCaptionBlockInner .mcnCaptionTopContent:last-child .mcnTextContent{
|
362
|
+
padding-top:18px !important;
|
363
|
+
}
|
364
|
+
|
365
|
+
} @media only screen and (max-width: 480px){
|
366
|
+
.mcnImageCardBottomImageContent{
|
367
|
+
padding-bottom:9px !important;
|
368
|
+
}
|
369
|
+
|
370
|
+
} @media only screen and (max-width: 480px){
|
371
|
+
.mcnImageGroupBlockInner{
|
372
|
+
padding-top:0 !important;
|
373
|
+
padding-bottom:0 !important;
|
374
|
+
}
|
375
|
+
|
376
|
+
} @media only screen and (max-width: 480px){
|
377
|
+
.mcnImageGroupBlockOuter{
|
378
|
+
padding-top:9px !important;
|
379
|
+
padding-bottom:9px !important;
|
380
|
+
}
|
381
|
+
|
382
|
+
} @media only screen and (max-width: 480px){
|
383
|
+
.mcnTextContent,.mcnBoxedTextContentColumn{
|
384
|
+
padding-right:18px !important;
|
385
|
+
padding-left:18px !important;
|
386
|
+
}
|
387
|
+
|
388
|
+
} @media only screen and (max-width: 480px){
|
389
|
+
.mcnImageCardLeftImageContent,.mcnImageCardRightImageContent{
|
390
|
+
padding-right:18px !important;
|
391
|
+
padding-bottom:0 !important;
|
392
|
+
padding-left:18px !important;
|
393
|
+
}
|
394
|
+
|
395
|
+
} @media only screen and (max-width: 480px){
|
396
|
+
.mcpreview-image-uploader{
|
397
|
+
display:none !important;
|
398
|
+
width:100% !important;
|
399
|
+
}
|
400
|
+
|
401
|
+
} @media only screen and (max-width: 480px){
|
402
|
+
/*
|
403
|
+
@tab Mobile Styles
|
404
|
+
@section Heading 1
|
405
|
+
@tip Make the first-level headings larger in size for better readability on small screens.
|
406
|
+
*/
|
407
|
+
h1{
|
408
|
+
/*@editable*/font-size:30px !important;
|
409
|
+
/*@editable*/line-height:125% !important;
|
410
|
+
}
|
411
|
+
|
412
|
+
} @media only screen and (max-width: 480px){
|
413
|
+
/*
|
414
|
+
@tab Mobile Styles
|
415
|
+
@section Heading 2
|
416
|
+
@tip Make the second-level headings larger in size for better readability on small screens.
|
417
|
+
*/
|
418
|
+
h2{
|
419
|
+
/*@editable*/font-size:26px !important;
|
420
|
+
/*@editable*/line-height:125% !important;
|
421
|
+
}
|
422
|
+
|
423
|
+
} @media only screen and (max-width: 480px){
|
424
|
+
/*
|
425
|
+
@tab Mobile Styles
|
426
|
+
@section Heading 3
|
427
|
+
@tip Make the third-level headings larger in size for better readability on small screens.
|
428
|
+
*/
|
429
|
+
h3{
|
430
|
+
/*@editable*/font-size:20px !important;
|
431
|
+
/*@editable*/line-height:150% !important;
|
432
|
+
}
|
433
|
+
|
434
|
+
} @media only screen and (max-width: 480px){
|
435
|
+
/*
|
436
|
+
@tab Mobile Styles
|
437
|
+
@section Heading 4
|
438
|
+
@tip Make the fourth-level headings larger in size for better readability on small screens.
|
439
|
+
*/
|
440
|
+
h4{
|
441
|
+
/*@editable*/font-size:18px !important;
|
442
|
+
/*@editable*/line-height:150% !important;
|
443
|
+
}
|
444
|
+
|
445
|
+
} @media only screen and (max-width: 480px){
|
446
|
+
/*
|
447
|
+
@tab Mobile Styles
|
448
|
+
@section Boxed Text
|
449
|
+
@tip Make the boxed text larger in size for better readability on small screens. We recommend a font size of at least 16px.
|
450
|
+
*/
|
451
|
+
.mcnBoxedTextContentContainer .mcnTextContent,.mcnBoxedTextContentContainer .mcnTextContent p{
|
452
|
+
/*@editable*/font-size:14px !important;
|
453
|
+
/*@editable*/line-height:150% !important;
|
454
|
+
}
|
455
|
+
|
456
|
+
} @media only screen and (max-width: 480px){
|
457
|
+
/*
|
458
|
+
@tab Mobile Styles
|
459
|
+
@section Header Text
|
460
|
+
@tip Make the header text larger in size for better readability on small screens.
|
461
|
+
*/
|
462
|
+
.headerContainer .mcnTextContent,.headerContainer .mcnTextContent p{
|
463
|
+
/*@editable*/font-size:16px !important;
|
464
|
+
/*@editable*/line-height:150% !important;
|
465
|
+
}
|
466
|
+
|
467
|
+
} @media only screen and (max-width: 480px){
|
468
|
+
/*
|
469
|
+
@tab Mobile Styles
|
470
|
+
@section Body Text
|
471
|
+
@tip Make the body text larger in size for better readability on small screens. We recommend a font size of at least 16px.
|
472
|
+
*/
|
473
|
+
.bodyContainer .mcnTextContent,.bodyContainer .mcnTextContent p{
|
474
|
+
/*@editable*/font-size:16px !important;
|
475
|
+
/*@editable*/line-height:150% !important;
|
476
|
+
}
|
477
|
+
|
478
|
+
} @media only screen and (max-width: 480px){
|
479
|
+
/*
|
480
|
+
@tab Mobile Styles
|
481
|
+
@section Footer Text
|
482
|
+
@tip Make the footer content text larger in size for better readability on small screens.
|
483
|
+
*/
|
484
|
+
.footerContainer .mcnTextContent,.footerContainer .mcnTextContent p{
|
485
|
+
/*@editable*/font-size:14px !important;
|
486
|
+
/*@editable*/line-height:150% !important;
|
487
|
+
}
|
488
|
+
|
489
|
+
}</style></head>
|
490
|
+
<body>
|
491
|
+
<!--*|IF:MC_PREVIEW_TEXT|*-->
|
492
|
+
<!--[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;">*|MC_PREVIEW_TEXT|*</span><!--<![endif]-->
|
493
|
+
<!--*|END:IF|*-->
|
494
|
+
<center>
|
495
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable">
|
496
|
+
<tr>
|
497
|
+
<td align="center" valign="top" id="bodyCell">
|
498
|
+
<!-- BEGIN TEMPLATE // -->
|
499
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
500
|
+
<tr>
|
501
|
+
<td align="center" valign="top" id="templateHeader" data-template-container>
|
502
|
+
<!--[if (gte mso 9)|(IE)]>
|
503
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
504
|
+
<tr>
|
505
|
+
<td align="center" valign="top" width="600" style="width:600px;">
|
506
|
+
<![endif]-->
|
507
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
508
|
+
<tr>
|
509
|
+
<td valign="top" class="headerContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
|
510
|
+
<tbody class="mcnImageBlockOuter">
|
511
|
+
<tr>
|
512
|
+
<td valign="top" style="padding:9px" class="mcnImageBlockInner">
|
513
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
|
514
|
+
<tbody><tr>
|
515
|
+
<td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
|
516
|
+
|
517
|
+
|
518
|
+
<img align="center" alt="" src="*|BRAND:LOGO|*" width="196" style="max-width:196px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
|
519
|
+
|
520
|
+
|
521
|
+
</td>
|
522
|
+
</tr>
|
523
|
+
</tbody></table>
|
524
|
+
</td>
|
525
|
+
</tr>
|
526
|
+
</tbody>
|
527
|
+
</table></td>
|
528
|
+
</tr>
|
529
|
+
</table>
|
530
|
+
<!--[if (gte mso 9)|(IE)]>
|
531
|
+
</td>
|
532
|
+
</tr>
|
533
|
+
</table>
|
534
|
+
<![endif]-->
|
535
|
+
</td>
|
536
|
+
</tr>
|
537
|
+
<tr>
|
538
|
+
<td align="center" valign="top" id="templateBody" data-template-container>
|
539
|
+
<!--[if (gte mso 9)|(IE)]>
|
540
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
541
|
+
<tr>
|
542
|
+
<td align="center" valign="top" width="600" style="width:600px;">
|
543
|
+
<![endif]-->
|
544
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
545
|
+
<tr>
|
546
|
+
<td valign="top" class="bodyContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
547
|
+
<tbody class="mcnTextBlockOuter">
|
548
|
+
<tr>
|
549
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
550
|
+
<!--[if mso]>
|
551
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
552
|
+
<tr>
|
553
|
+
<![endif]-->
|
554
|
+
|
555
|
+
<!--[if mso]>
|
556
|
+
<td valign="top" width="600" style="width:600px;">
|
557
|
+
<![endif]-->
|
558
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
559
|
+
<tbody><tr>
|
560
|
+
|
561
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
562
|
+
|
563
|
+
<h1>Send a tailored follow-up email.</h1>
|
564
|
+
</td>
|
565
|
+
</tr>
|
566
|
+
</tbody></table>
|
567
|
+
<!--[if mso]>
|
568
|
+
</td>
|
569
|
+
<![endif]-->
|
570
|
+
|
571
|
+
<!--[if mso]>
|
572
|
+
</tr>
|
573
|
+
</table>
|
574
|
+
<![endif]-->
|
575
|
+
</td>
|
576
|
+
</tr>
|
577
|
+
</tbody>
|
578
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
|
579
|
+
<tbody class="mcnDividerBlockOuter">
|
580
|
+
<tr>
|
581
|
+
<td class="mcnDividerBlockInner" style="min-width: 100%; padding: 18px 18px 0px;">
|
582
|
+
<table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;">
|
583
|
+
<tbody><tr>
|
584
|
+
<td>
|
585
|
+
<span></span>
|
586
|
+
</td>
|
587
|
+
</tr>
|
588
|
+
</tbody></table>
|
589
|
+
<!--
|
590
|
+
<td class="mcnDividerBlockInner" style="padding: 18px;">
|
591
|
+
<hr class="mcnDividerContent" style="border-bottom-color:none; border-left-color:none; border-right-color:none; border-bottom-width:0; border-left-width:0; border-right-width:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0;" />
|
592
|
+
-->
|
593
|
+
</td>
|
594
|
+
</tr>
|
595
|
+
</tbody>
|
596
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
|
597
|
+
<tbody class="mcnImageBlockOuter">
|
598
|
+
<tr>
|
599
|
+
<td valign="top" style="padding:9px" class="mcnImageBlockInner">
|
600
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
|
601
|
+
<tbody><tr>
|
602
|
+
<td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
|
603
|
+
|
604
|
+
|
605
|
+
<img align="center" alt="" src="https://cdn-images.mailchimp.com/template_images/gallery/follow-up-full.png" width="564" style="max-width:564px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
|
606
|
+
|
607
|
+
|
608
|
+
</td>
|
609
|
+
</tr>
|
610
|
+
</tbody></table>
|
611
|
+
</td>
|
612
|
+
</tr>
|
613
|
+
</tbody>
|
614
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
615
|
+
<tbody class="mcnTextBlockOuter">
|
616
|
+
<tr>
|
617
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
618
|
+
<!--[if mso]>
|
619
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
620
|
+
<tr>
|
621
|
+
<![endif]-->
|
622
|
+
|
623
|
+
<!--[if mso]>
|
624
|
+
<td valign="top" width="600" style="width:600px;">
|
625
|
+
<![endif]-->
|
626
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
627
|
+
<tbody><tr>
|
628
|
+
|
629
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
630
|
+
|
631
|
+
<p>Keep people involved by following up with a personal message or discount code. Start by replacing the full-width header with a different color or a high-res image.</p><p><strong>If you sell things,</strong> welcome new customers after a purchase, let lapsed customers know you miss them, or offer a deal to your best customers. If you've connected your store, try adding product or product recommendation blocks, too.</p><p><strong>If you don't sell things,</strong> welcome new subscribers to your list, thank people for attending an event, and let inactive subscribers know you miss them.</p>
|
632
|
+
</td>
|
633
|
+
</tr>
|
634
|
+
</tbody></table>
|
635
|
+
<!--[if mso]>
|
636
|
+
</td>
|
637
|
+
<![endif]-->
|
638
|
+
|
639
|
+
<!--[if mso]>
|
640
|
+
</tr>
|
641
|
+
</table>
|
642
|
+
<![endif]-->
|
643
|
+
</td>
|
644
|
+
</tr>
|
645
|
+
</tbody>
|
646
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
|
647
|
+
<tbody class="mcnDividerBlockOuter">
|
648
|
+
<tr>
|
649
|
+
<td class="mcnDividerBlockInner" style="min-width: 100%; padding: 9px 18px 0px;">
|
650
|
+
<table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;">
|
651
|
+
<tbody><tr>
|
652
|
+
<td>
|
653
|
+
<span></span>
|
654
|
+
</td>
|
655
|
+
</tr>
|
656
|
+
</tbody></table>
|
657
|
+
<!--
|
658
|
+
<td class="mcnDividerBlockInner" style="padding: 18px;">
|
659
|
+
<hr class="mcnDividerContent" style="border-bottom-color:none; border-left-color:none; border-right-color:none; border-bottom-width:0; border-left-width:0; border-right-width:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0;" />
|
660
|
+
-->
|
661
|
+
</td>
|
662
|
+
</tr>
|
663
|
+
</tbody>
|
664
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnButtonBlock" style="min-width:100%;">
|
665
|
+
<tbody class="mcnButtonBlockOuter">
|
666
|
+
<tr>
|
667
|
+
<td style="padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;" valign="top" align="center" class="mcnButtonBlockInner">
|
668
|
+
<table border="0" cellpadding="0" cellspacing="0" class="mcnButtonContentContainer" style="border-collapse: separate !important;border-radius: 3px;background-color: #009FC7;">
|
669
|
+
<tbody>
|
670
|
+
<tr>
|
671
|
+
<td align="center" valign="middle" class="mcnButtonContent" style="font-family: Helvetica; font-size: 18px; padding: 18px;">
|
672
|
+
<a class="mcnButton " title="Shop Now" href="#" target="_blank" style="font-weight: bold;letter-spacing: -0.5px;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;">Shop Now</a>
|
673
|
+
</td>
|
674
|
+
</tr>
|
675
|
+
</tbody>
|
676
|
+
</table>
|
677
|
+
</td>
|
678
|
+
</tr>
|
679
|
+
</tbody>
|
680
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
|
681
|
+
<tbody class="mcnDividerBlockOuter">
|
682
|
+
<tr>
|
683
|
+
<td class="mcnDividerBlockInner" style="min-width: 100%; padding: 18px 18px 0px;">
|
684
|
+
<table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;">
|
685
|
+
<tbody><tr>
|
686
|
+
<td>
|
687
|
+
<span></span>
|
688
|
+
</td>
|
689
|
+
</tr>
|
690
|
+
</tbody></table>
|
691
|
+
<!--
|
692
|
+
<td class="mcnDividerBlockInner" style="padding: 18px;">
|
693
|
+
<hr class="mcnDividerContent" style="border-bottom-color:none; border-left-color:none; border-right-color:none; border-bottom-width:0; border-left-width:0; border-right-width:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0;" />
|
694
|
+
-->
|
695
|
+
</td>
|
696
|
+
</tr>
|
697
|
+
</tbody>
|
698
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnBoxedTextBlock" style="min-width:100%;">
|
699
|
+
<!--[if gte mso 9]>
|
700
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="100%">
|
701
|
+
<![endif]-->
|
702
|
+
<tbody class="mcnBoxedTextBlockOuter">
|
703
|
+
<tr>
|
704
|
+
<td valign="top" class="mcnBoxedTextBlockInner">
|
705
|
+
|
706
|
+
<!--[if gte mso 9]>
|
707
|
+
<td align="center" valign="top" ">
|
708
|
+
<![endif]-->
|
709
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;" class="mcnBoxedTextContentContainer">
|
710
|
+
<tbody><tr>
|
711
|
+
|
712
|
+
<td style="padding-top:9px; padding-left:18px; padding-bottom:9px; padding-right:18px;">
|
713
|
+
|
714
|
+
<table border="0" cellspacing="0" class="mcnTextContentContainer" width="100%" style="min-width: 100% !important;background-color: #F7F7F7;">
|
715
|
+
<tbody><tr>
|
716
|
+
<td valign="top" class="mcnTextContent" style="padding: 18px;color: #707070;font-family: Helvetica;font-size: 16px;line-height: 200%;text-align: center;">
|
717
|
+
<h3>Share what's new</h3>Let people know what you've been up to or what they might have missed.
|
718
|
+
</td>
|
719
|
+
</tr>
|
720
|
+
</tbody></table>
|
721
|
+
</td>
|
722
|
+
</tr>
|
723
|
+
</tbody></table>
|
724
|
+
<!--[if gte mso 9]>
|
725
|
+
</td>
|
726
|
+
<![endif]-->
|
727
|
+
|
728
|
+
<!--[if gte mso 9]>
|
729
|
+
</tr>
|
730
|
+
</table>
|
731
|
+
<![endif]-->
|
732
|
+
</td>
|
733
|
+
</tr>
|
734
|
+
</tbody>
|
735
|
+
</table></td>
|
736
|
+
</tr>
|
737
|
+
</table>
|
738
|
+
<!--[if (gte mso 9)|(IE)]>
|
739
|
+
</td>
|
740
|
+
</tr>
|
741
|
+
</table>
|
742
|
+
<![endif]-->
|
743
|
+
</td>
|
744
|
+
</tr>
|
745
|
+
<tr>
|
746
|
+
<td align="center" valign="top" id="templateFooter" data-template-container>
|
747
|
+
<!--[if (gte mso 9)|(IE)]>
|
748
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
749
|
+
<tr>
|
750
|
+
<td align="center" valign="top" width="600" style="width:600px;">
|
751
|
+
<![endif]-->
|
752
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
753
|
+
<tr>
|
754
|
+
<td valign="top" class="footerContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowBlock" style="min-width:100%;">
|
755
|
+
<tbody class="mcnFollowBlockOuter">
|
756
|
+
<tr>
|
757
|
+
<td align="center" valign="top" style="padding:9px" class="mcnFollowBlockInner">
|
758
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentContainer" style="min-width:100%;">
|
759
|
+
<tbody><tr>
|
760
|
+
<td align="center" style="padding-left:9px;padding-right:9px;">
|
761
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;" class="mcnFollowContent">
|
762
|
+
<tbody><tr>
|
763
|
+
<td align="center" valign="top" style="padding-top:9px; padding-right:9px; padding-left:9px;">
|
764
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0">
|
765
|
+
<tbody><tr>
|
766
|
+
<td align="center" valign="top">
|
767
|
+
<!--[if mso]>
|
768
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0">
|
769
|
+
<tr>
|
770
|
+
<![endif]-->
|
771
|
+
|
772
|
+
<!--[if mso]>
|
773
|
+
<td align="center" valign="top">
|
774
|
+
<![endif]-->
|
775
|
+
|
776
|
+
|
777
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
|
778
|
+
<tbody><tr>
|
779
|
+
<td valign="top" style="padding-right:10px; padding-bottom:9px;" class="mcnFollowContentItemContainer">
|
780
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
|
781
|
+
<tbody><tr>
|
782
|
+
<td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
|
783
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="">
|
784
|
+
<tbody><tr>
|
785
|
+
|
786
|
+
<td align="center" valign="middle" width="24" class="mcnFollowIconContent">
|
787
|
+
<a href="http://www.facebook.com" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/outline-light-facebook-48.png" alt="Facebook" style="display:block;" height="24" width="24" class=""></a>
|
788
|
+
</td>
|
789
|
+
|
790
|
+
|
791
|
+
</tr>
|
792
|
+
</tbody></table>
|
793
|
+
</td>
|
794
|
+
</tr>
|
795
|
+
</tbody></table>
|
796
|
+
</td>
|
797
|
+
</tr>
|
798
|
+
</tbody></table>
|
799
|
+
|
800
|
+
<!--[if mso]>
|
801
|
+
</td>
|
802
|
+
<![endif]-->
|
803
|
+
|
804
|
+
<!--[if mso]>
|
805
|
+
<td align="center" valign="top">
|
806
|
+
<![endif]-->
|
807
|
+
|
808
|
+
|
809
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
|
810
|
+
<tbody><tr>
|
811
|
+
<td valign="top" style="padding-right:10px; padding-bottom:9px;" class="mcnFollowContentItemContainer">
|
812
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
|
813
|
+
<tbody><tr>
|
814
|
+
<td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
|
815
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="">
|
816
|
+
<tbody><tr>
|
817
|
+
|
818
|
+
<td align="center" valign="middle" width="24" class="mcnFollowIconContent">
|
819
|
+
<a href="http://www.twitter.com/" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/outline-light-twitter-48.png" alt="Twitter" style="display:block;" height="24" width="24" class=""></a>
|
820
|
+
</td>
|
821
|
+
|
822
|
+
|
823
|
+
</tr>
|
824
|
+
</tbody></table>
|
825
|
+
</td>
|
826
|
+
</tr>
|
827
|
+
</tbody></table>
|
828
|
+
</td>
|
829
|
+
</tr>
|
830
|
+
</tbody></table>
|
831
|
+
|
832
|
+
<!--[if mso]>
|
833
|
+
</td>
|
834
|
+
<![endif]-->
|
835
|
+
|
836
|
+
<!--[if mso]>
|
837
|
+
<td align="center" valign="top">
|
838
|
+
<![endif]-->
|
839
|
+
|
840
|
+
|
841
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
|
842
|
+
<tbody><tr>
|
843
|
+
<td valign="top" style="padding-right:10px; padding-bottom:9px;" class="mcnFollowContentItemContainer">
|
844
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
|
845
|
+
<tbody><tr>
|
846
|
+
<td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
|
847
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="">
|
848
|
+
<tbody><tr>
|
849
|
+
|
850
|
+
<td align="center" valign="middle" width="24" class="mcnFollowIconContent">
|
851
|
+
<a href="http://www.instagram.com/" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/outline-light-instagram-48.png" alt="Link" style="display:block;" height="24" width="24" class=""></a>
|
852
|
+
</td>
|
853
|
+
|
854
|
+
|
855
|
+
</tr>
|
856
|
+
</tbody></table>
|
857
|
+
</td>
|
858
|
+
</tr>
|
859
|
+
</tbody></table>
|
860
|
+
</td>
|
861
|
+
</tr>
|
862
|
+
</tbody></table>
|
863
|
+
|
864
|
+
<!--[if mso]>
|
865
|
+
</td>
|
866
|
+
<![endif]-->
|
867
|
+
|
868
|
+
<!--[if mso]>
|
869
|
+
<td align="center" valign="top">
|
870
|
+
<![endif]-->
|
871
|
+
|
872
|
+
|
873
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
|
874
|
+
<tbody><tr>
|
875
|
+
<td valign="top" style="padding-right:0; padding-bottom:9px;" class="mcnFollowContentItemContainer">
|
876
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
|
877
|
+
<tbody><tr>
|
878
|
+
<td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
|
879
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="">
|
880
|
+
<tbody><tr>
|
881
|
+
|
882
|
+
<td align="center" valign="middle" width="24" class="mcnFollowIconContent">
|
883
|
+
<a href="http://mailchimp.com" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/outline-light-link-48.png" alt="Website" style="display:block;" height="24" width="24" class=""></a>
|
884
|
+
</td>
|
885
|
+
|
886
|
+
|
887
|
+
</tr>
|
888
|
+
</tbody></table>
|
889
|
+
</td>
|
890
|
+
</tr>
|
891
|
+
</tbody></table>
|
892
|
+
</td>
|
893
|
+
</tr>
|
894
|
+
</tbody></table>
|
895
|
+
|
896
|
+
<!--[if mso]>
|
897
|
+
</td>
|
898
|
+
<![endif]-->
|
899
|
+
|
900
|
+
<!--[if mso]>
|
901
|
+
</tr>
|
902
|
+
</table>
|
903
|
+
<![endif]-->
|
904
|
+
</td>
|
905
|
+
</tr>
|
906
|
+
</tbody></table>
|
907
|
+
</td>
|
908
|
+
</tr>
|
909
|
+
</tbody></table>
|
910
|
+
</td>
|
911
|
+
</tr>
|
912
|
+
</tbody></table>
|
913
|
+
|
914
|
+
</td>
|
915
|
+
</tr>
|
916
|
+
</tbody>
|
917
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
|
918
|
+
<tbody class="mcnDividerBlockOuter">
|
919
|
+
<tr>
|
920
|
+
<td class="mcnDividerBlockInner" style="min-width:100%; padding:18px;">
|
921
|
+
<table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%;border-top: 2px solid #505050;">
|
922
|
+
<tbody><tr>
|
923
|
+
<td>
|
924
|
+
<span></span>
|
925
|
+
</td>
|
926
|
+
</tr>
|
927
|
+
</tbody></table>
|
928
|
+
<!--
|
929
|
+
<td class="mcnDividerBlockInner" style="padding: 18px;">
|
930
|
+
<hr class="mcnDividerContent" style="border-bottom-color:none; border-left-color:none; border-right-color:none; border-bottom-width:0; border-left-width:0; border-right-width:0; margin-top:0; margin-right:0; margin-bottom:0; margin-left:0;" />
|
931
|
+
-->
|
932
|
+
</td>
|
933
|
+
</tr>
|
934
|
+
</tbody>
|
935
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
936
|
+
<tbody class="mcnTextBlockOuter">
|
937
|
+
<tr>
|
938
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
939
|
+
<!--[if mso]>
|
940
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
941
|
+
<tr>
|
942
|
+
<![endif]-->
|
943
|
+
|
944
|
+
<!--[if mso]>
|
945
|
+
<td valign="top" width="600" style="width:600px;">
|
946
|
+
<![endif]-->
|
947
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
948
|
+
<tbody><tr>
|
949
|
+
|
950
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
951
|
+
|
952
|
+
<em>Copyright © *|CURRENT_YEAR|* *|LIST:COMPANY|*, All rights reserved.</em>
|
953
|
+
<br>
|
954
|
+
*|IFNOT:ARCHIVE_PAGE|*
|
955
|
+
*|LIST:DESCRIPTION|*
|
956
|
+
<br>
|
957
|
+
<br>
|
958
|
+
<strong>Our mailing address is:</strong>
|
959
|
+
<br>
|
960
|
+
*|HTML:LIST_ADDRESS_HTML|* *|END:IF|*
|
961
|
+
<br>
|
962
|
+
<br>
|
963
|
+
Want to change how you receive these emails?<br>
|
964
|
+
You can <a href="*|UPDATE_PROFILE|*">update your preferences</a> or <a href="*|UNSUB|*">unsubscribe from this list</a>.
|
965
|
+
<br>
|
966
|
+
<br>
|
967
|
+
*|IF:REWARDS|* *|HTML:REWARDS|*
|
968
|
+
*|END:IF|*
|
969
|
+
|
970
|
+
</td>
|
971
|
+
</tr>
|
972
|
+
</tbody></table>
|
973
|
+
<!--[if mso]>
|
974
|
+
</td>
|
975
|
+
<![endif]-->
|
976
|
+
|
977
|
+
<!--[if mso]>
|
978
|
+
</tr>
|
979
|
+
</table>
|
980
|
+
<![endif]-->
|
981
|
+
</td>
|
982
|
+
</tr>
|
983
|
+
</tbody>
|
984
|
+
</table></td>
|
985
|
+
</tr>
|
986
|
+
</table>
|
987
|
+
<!--[if (gte mso 9)|(IE)]>
|
988
|
+
</td>
|
989
|
+
</tr>
|
990
|
+
</table>
|
991
|
+
<![endif]-->
|
992
|
+
</td>
|
993
|
+
</tr>
|
994
|
+
</table>
|
995
|
+
<!-- // END TEMPLATE -->
|
996
|
+
</td>
|
997
|
+
</tr>
|
998
|
+
</table>
|
999
|
+
</center>
|
1000
|
+
<script type="text/javascript" src="/WAbyZUhtL/C/-fIkNMFw/1rOppNmp/RSlzKA/VFRPR3UV/LCoB"></script></body>
|
1001
|
+
</html>
|