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,1053 @@
|
|
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: 1:2 COLUMN - FULL WIDTH -->
|
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 Background Style
|
106
|
+
@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.
|
107
|
+
*/
|
108
|
+
body,#bodyTable{
|
109
|
+
/*@editable*/background-color:#FAFAFA;
|
110
|
+
}
|
111
|
+
/*
|
112
|
+
@tab Page
|
113
|
+
@section Background Style
|
114
|
+
@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.
|
115
|
+
*/
|
116
|
+
#bodyCell{
|
117
|
+
/*@editable*/border-top:0;
|
118
|
+
}
|
119
|
+
/*
|
120
|
+
@tab Page
|
121
|
+
@section Heading 1
|
122
|
+
@tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.
|
123
|
+
@style heading 1
|
124
|
+
*/
|
125
|
+
h1{
|
126
|
+
/*@editable*/color:#202020;
|
127
|
+
/*@editable*/font-family:Helvetica;
|
128
|
+
/*@editable*/font-size:26px;
|
129
|
+
/*@editable*/font-style:normal;
|
130
|
+
/*@editable*/font-weight:bold;
|
131
|
+
/*@editable*/line-height:125%;
|
132
|
+
/*@editable*/letter-spacing:normal;
|
133
|
+
/*@editable*/text-align:left;
|
134
|
+
}
|
135
|
+
/*
|
136
|
+
@tab Page
|
137
|
+
@section Heading 2
|
138
|
+
@tip Set the styling for all second-level headings in your emails.
|
139
|
+
@style heading 2
|
140
|
+
*/
|
141
|
+
h2{
|
142
|
+
/*@editable*/color:#202020;
|
143
|
+
/*@editable*/font-family:Helvetica;
|
144
|
+
/*@editable*/font-size:22px;
|
145
|
+
/*@editable*/font-style:normal;
|
146
|
+
/*@editable*/font-weight:bold;
|
147
|
+
/*@editable*/line-height:125%;
|
148
|
+
/*@editable*/letter-spacing:normal;
|
149
|
+
/*@editable*/text-align:left;
|
150
|
+
}
|
151
|
+
/*
|
152
|
+
@tab Page
|
153
|
+
@section Heading 3
|
154
|
+
@tip Set the styling for all third-level headings in your emails.
|
155
|
+
@style heading 3
|
156
|
+
*/
|
157
|
+
h3{
|
158
|
+
/*@editable*/color:#202020;
|
159
|
+
/*@editable*/font-family:Helvetica;
|
160
|
+
/*@editable*/font-size:20px;
|
161
|
+
/*@editable*/font-style:normal;
|
162
|
+
/*@editable*/font-weight:bold;
|
163
|
+
/*@editable*/line-height:125%;
|
164
|
+
/*@editable*/letter-spacing:normal;
|
165
|
+
/*@editable*/text-align:left;
|
166
|
+
}
|
167
|
+
/*
|
168
|
+
@tab Page
|
169
|
+
@section Heading 4
|
170
|
+
@tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.
|
171
|
+
@style heading 4
|
172
|
+
*/
|
173
|
+
h4{
|
174
|
+
/*@editable*/color:#202020;
|
175
|
+
/*@editable*/font-family:Helvetica;
|
176
|
+
/*@editable*/font-size:18px;
|
177
|
+
/*@editable*/font-style:normal;
|
178
|
+
/*@editable*/font-weight:bold;
|
179
|
+
/*@editable*/line-height:125%;
|
180
|
+
/*@editable*/letter-spacing:normal;
|
181
|
+
/*@editable*/text-align:left;
|
182
|
+
}
|
183
|
+
/*
|
184
|
+
@tab Preheader
|
185
|
+
@section Preheader Style
|
186
|
+
@tip Set the background color and borders for your email's preheader area.
|
187
|
+
*/
|
188
|
+
#templatePreheader{
|
189
|
+
/*@editable*/background-color:#FAFAFA;
|
190
|
+
/*@editable*/background-image:none;
|
191
|
+
/*@editable*/background-repeat:no-repeat;
|
192
|
+
/*@editable*/background-position:center;
|
193
|
+
/*@editable*/background-size:cover;
|
194
|
+
/*@editable*/border-top:0;
|
195
|
+
/*@editable*/border-bottom:0;
|
196
|
+
/*@editable*/padding-top:9px;
|
197
|
+
/*@editable*/padding-bottom:9px;
|
198
|
+
}
|
199
|
+
/*
|
200
|
+
@tab Preheader
|
201
|
+
@section Preheader Text
|
202
|
+
@tip Set the styling for your email's preheader text. Choose a size and color that is easy to read.
|
203
|
+
*/
|
204
|
+
#templatePreheader .mcnTextContent,#templatePreheader .mcnTextContent p{
|
205
|
+
/*@editable*/color:#656565;
|
206
|
+
/*@editable*/font-family:Helvetica;
|
207
|
+
/*@editable*/font-size:12px;
|
208
|
+
/*@editable*/line-height:150%;
|
209
|
+
/*@editable*/text-align:left;
|
210
|
+
}
|
211
|
+
/*
|
212
|
+
@tab Preheader
|
213
|
+
@section Preheader Link
|
214
|
+
@tip Set the styling for your email's preheader links. Choose a color that helps them stand out from your text.
|
215
|
+
*/
|
216
|
+
#templatePreheader .mcnTextContent a,#templatePreheader .mcnTextContent p a{
|
217
|
+
/*@editable*/color:#656565;
|
218
|
+
/*@editable*/font-weight:normal;
|
219
|
+
/*@editable*/text-decoration:underline;
|
220
|
+
}
|
221
|
+
/*
|
222
|
+
@tab Header
|
223
|
+
@section Header Style
|
224
|
+
@tip Set the background color and borders for your email's header area.
|
225
|
+
*/
|
226
|
+
#templateHeader{
|
227
|
+
/*@editable*/background-color:#FFFFFF;
|
228
|
+
/*@editable*/background-image:none;
|
229
|
+
/*@editable*/background-repeat:no-repeat;
|
230
|
+
/*@editable*/background-position:center;
|
231
|
+
/*@editable*/background-size:cover;
|
232
|
+
/*@editable*/border-top:0;
|
233
|
+
/*@editable*/border-bottom:0;
|
234
|
+
/*@editable*/padding-top:9px;
|
235
|
+
/*@editable*/padding-bottom:0;
|
236
|
+
}
|
237
|
+
/*
|
238
|
+
@tab Header
|
239
|
+
@section Header Text
|
240
|
+
@tip Set the styling for your email's header text. Choose a size and color that is easy to read.
|
241
|
+
*/
|
242
|
+
#templateHeader .mcnTextContent,#templateHeader .mcnTextContent p{
|
243
|
+
/*@editable*/color:#202020;
|
244
|
+
/*@editable*/font-family:Helvetica;
|
245
|
+
/*@editable*/font-size:16px;
|
246
|
+
/*@editable*/line-height:150%;
|
247
|
+
/*@editable*/text-align:left;
|
248
|
+
}
|
249
|
+
/*
|
250
|
+
@tab Header
|
251
|
+
@section Header Link
|
252
|
+
@tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.
|
253
|
+
*/
|
254
|
+
#templateHeader .mcnTextContent a,#templateHeader .mcnTextContent p a{
|
255
|
+
/*@editable*/color:#007C89;
|
256
|
+
/*@editable*/font-weight:normal;
|
257
|
+
/*@editable*/text-decoration:underline;
|
258
|
+
}
|
259
|
+
/*
|
260
|
+
@tab Body
|
261
|
+
@section Body Style
|
262
|
+
@tip Set the background color and borders for your email's body area.
|
263
|
+
*/
|
264
|
+
#templateBody{
|
265
|
+
/*@editable*/background-color:#FFFFFF;
|
266
|
+
/*@editable*/background-image:none;
|
267
|
+
/*@editable*/background-repeat:no-repeat;
|
268
|
+
/*@editable*/background-position:center;
|
269
|
+
/*@editable*/background-size:cover;
|
270
|
+
/*@editable*/border-top:0;
|
271
|
+
/*@editable*/border-bottom:0;
|
272
|
+
/*@editable*/padding-top:0;
|
273
|
+
/*@editable*/padding-bottom:0;
|
274
|
+
}
|
275
|
+
/*
|
276
|
+
@tab Body
|
277
|
+
@section Body Text
|
278
|
+
@tip Set the styling for your email's body text. Choose a size and color that is easy to read.
|
279
|
+
*/
|
280
|
+
#templateBody .mcnTextContent,#templateBody .mcnTextContent p{
|
281
|
+
/*@editable*/color:#202020;
|
282
|
+
/*@editable*/font-family:Helvetica;
|
283
|
+
/*@editable*/font-size:16px;
|
284
|
+
/*@editable*/line-height:150%;
|
285
|
+
/*@editable*/text-align:left;
|
286
|
+
}
|
287
|
+
/*
|
288
|
+
@tab Body
|
289
|
+
@section Body Link
|
290
|
+
@tip Set the styling for your email's body links. Choose a color that helps them stand out from your text.
|
291
|
+
*/
|
292
|
+
#templateBody .mcnTextContent a,#templateBody .mcnTextContent p a{
|
293
|
+
/*@editable*/color:#007C89;
|
294
|
+
/*@editable*/font-weight:normal;
|
295
|
+
/*@editable*/text-decoration:underline;
|
296
|
+
}
|
297
|
+
/*
|
298
|
+
@tab Columns
|
299
|
+
@section Column Style
|
300
|
+
@tip Set the background color and borders for your email's columns.
|
301
|
+
*/
|
302
|
+
#templateColumns{
|
303
|
+
/*@editable*/background-color:#FFFFFF;
|
304
|
+
/*@editable*/background-image:none;
|
305
|
+
/*@editable*/background-repeat:no-repeat;
|
306
|
+
/*@editable*/background-position:center;
|
307
|
+
/*@editable*/background-size:cover;
|
308
|
+
/*@editable*/border-top:0;
|
309
|
+
/*@editable*/border-bottom:2px solid #EAEAEA;
|
310
|
+
/*@editable*/padding-top:0;
|
311
|
+
/*@editable*/padding-bottom:9px;
|
312
|
+
}
|
313
|
+
/*
|
314
|
+
@tab Columns
|
315
|
+
@section Column Text
|
316
|
+
@tip Set the styling for your email's column text. Choose a size and color that is easy to read.
|
317
|
+
*/
|
318
|
+
#templateColumns .columnContainer .mcnTextContent,#templateColumns .columnContainer .mcnTextContent p{
|
319
|
+
/*@editable*/color:#202020;
|
320
|
+
/*@editable*/font-family:Helvetica;
|
321
|
+
/*@editable*/font-size:16px;
|
322
|
+
/*@editable*/line-height:150%;
|
323
|
+
/*@editable*/text-align:left;
|
324
|
+
}
|
325
|
+
/*
|
326
|
+
@tab Columns
|
327
|
+
@section Column Link
|
328
|
+
@tip Set the styling for your email's column links. Choose a color that helps them stand out from your text.
|
329
|
+
*/
|
330
|
+
#templateColumns .columnContainer .mcnTextContent a,#templateColumns .columnContainer .mcnTextContent p a{
|
331
|
+
/*@editable*/color:#007C89;
|
332
|
+
/*@editable*/font-weight:normal;
|
333
|
+
/*@editable*/text-decoration:underline;
|
334
|
+
}
|
335
|
+
/*
|
336
|
+
@tab Footer
|
337
|
+
@section Footer Style
|
338
|
+
@tip Set the background color and borders for your email's footer area.
|
339
|
+
*/
|
340
|
+
#templateFooter{
|
341
|
+
/*@editable*/background-color:#FAFAFA;
|
342
|
+
/*@editable*/background-image:none;
|
343
|
+
/*@editable*/background-repeat:no-repeat;
|
344
|
+
/*@editable*/background-position:center;
|
345
|
+
/*@editable*/background-size:cover;
|
346
|
+
/*@editable*/border-top:0;
|
347
|
+
/*@editable*/border-bottom:0;
|
348
|
+
/*@editable*/padding-top:9px;
|
349
|
+
/*@editable*/padding-bottom:9px;
|
350
|
+
}
|
351
|
+
/*
|
352
|
+
@tab Footer
|
353
|
+
@section Footer Text
|
354
|
+
@tip Set the styling for your email's footer text. Choose a size and color that is easy to read.
|
355
|
+
*/
|
356
|
+
#templateFooter .mcnTextContent,#templateFooter .mcnTextContent p{
|
357
|
+
/*@editable*/color:#656565;
|
358
|
+
/*@editable*/font-family:Helvetica;
|
359
|
+
/*@editable*/font-size:12px;
|
360
|
+
/*@editable*/line-height:150%;
|
361
|
+
/*@editable*/text-align:center;
|
362
|
+
}
|
363
|
+
/*
|
364
|
+
@tab Footer
|
365
|
+
@section Footer Link
|
366
|
+
@tip Set the styling for your email's footer links. Choose a color that helps them stand out from your text.
|
367
|
+
*/
|
368
|
+
#templateFooter .mcnTextContent a,#templateFooter .mcnTextContent p a{
|
369
|
+
/*@editable*/color:#656565;
|
370
|
+
/*@editable*/font-weight:normal;
|
371
|
+
/*@editable*/text-decoration:underline;
|
372
|
+
}
|
373
|
+
@media only screen and (min-width:768px){
|
374
|
+
.templateContainer{
|
375
|
+
width:600px !important;
|
376
|
+
}
|
377
|
+
|
378
|
+
} @media only screen and (max-width: 480px){
|
379
|
+
body,table,td,p,a,li,blockquote{
|
380
|
+
-webkit-text-size-adjust:none !important;
|
381
|
+
}
|
382
|
+
|
383
|
+
} @media only screen and (max-width: 480px){
|
384
|
+
body{
|
385
|
+
width:100% !important;
|
386
|
+
min-width:100% !important;
|
387
|
+
}
|
388
|
+
|
389
|
+
} @media only screen and (max-width: 480px){
|
390
|
+
.columnWrapper{
|
391
|
+
max-width:100% !important;
|
392
|
+
width:100% !important;
|
393
|
+
}
|
394
|
+
|
395
|
+
} @media only screen and (max-width: 480px){
|
396
|
+
.mcnRetinaImage{
|
397
|
+
max-width:100% !important;
|
398
|
+
}
|
399
|
+
|
400
|
+
} @media only screen and (max-width: 480px){
|
401
|
+
.mcnImage{
|
402
|
+
width:100% !important;
|
403
|
+
}
|
404
|
+
|
405
|
+
} @media only screen and (max-width: 480px){
|
406
|
+
.mcnCartContainer,.mcnCaptionTopContent,.mcnRecContentContainer,.mcnCaptionBottomContent,.mcnTextContentContainer,.mcnBoxedTextContentContainer,.mcnImageGroupContentContainer,.mcnCaptionLeftTextContentContainer,.mcnCaptionRightTextContentContainer,.mcnCaptionLeftImageContentContainer,.mcnCaptionRightImageContentContainer,.mcnImageCardLeftTextContentContainer,.mcnImageCardRightTextContentContainer,.mcnImageCardLeftImageContentContainer,.mcnImageCardRightImageContentContainer{
|
407
|
+
max-width:100% !important;
|
408
|
+
width:100% !important;
|
409
|
+
}
|
410
|
+
|
411
|
+
} @media only screen and (max-width: 480px){
|
412
|
+
.mcnBoxedTextContentContainer{
|
413
|
+
min-width:100% !important;
|
414
|
+
}
|
415
|
+
|
416
|
+
} @media only screen and (max-width: 480px){
|
417
|
+
.mcnImageGroupContent{
|
418
|
+
padding:9px !important;
|
419
|
+
}
|
420
|
+
|
421
|
+
} @media only screen and (max-width: 480px){
|
422
|
+
.mcnCaptionLeftContentOuter .mcnTextContent,.mcnCaptionRightContentOuter .mcnTextContent{
|
423
|
+
padding-top:9px !important;
|
424
|
+
}
|
425
|
+
|
426
|
+
} @media only screen and (max-width: 480px){
|
427
|
+
.mcnImageCardTopImageContent,.mcnCaptionBottomContent:last-child .mcnCaptionBottomImageContent,.mcnCaptionBlockInner .mcnCaptionTopContent:last-child .mcnTextContent{
|
428
|
+
padding-top:18px !important;
|
429
|
+
}
|
430
|
+
|
431
|
+
} @media only screen and (max-width: 480px){
|
432
|
+
.mcnImageCardBottomImageContent{
|
433
|
+
padding-bottom:9px !important;
|
434
|
+
}
|
435
|
+
|
436
|
+
} @media only screen and (max-width: 480px){
|
437
|
+
.mcnImageGroupBlockInner{
|
438
|
+
padding-top:0 !important;
|
439
|
+
padding-bottom:0 !important;
|
440
|
+
}
|
441
|
+
|
442
|
+
} @media only screen and (max-width: 480px){
|
443
|
+
.mcnImageGroupBlockOuter{
|
444
|
+
padding-top:9px !important;
|
445
|
+
padding-bottom:9px !important;
|
446
|
+
}
|
447
|
+
|
448
|
+
} @media only screen and (max-width: 480px){
|
449
|
+
.mcnTextContent,.mcnBoxedTextContentColumn{
|
450
|
+
padding-right:18px !important;
|
451
|
+
padding-left:18px !important;
|
452
|
+
}
|
453
|
+
|
454
|
+
} @media only screen and (max-width: 480px){
|
455
|
+
.mcnImageCardLeftImageContent,.mcnImageCardRightImageContent{
|
456
|
+
padding-right:18px !important;
|
457
|
+
padding-bottom:0 !important;
|
458
|
+
padding-left:18px !important;
|
459
|
+
}
|
460
|
+
|
461
|
+
} @media only screen and (max-width: 480px){
|
462
|
+
.mcpreview-image-uploader{
|
463
|
+
display:none !important;
|
464
|
+
width:100% !important;
|
465
|
+
}
|
466
|
+
|
467
|
+
} @media only screen and (max-width: 480px){
|
468
|
+
/*
|
469
|
+
@tab Mobile Styles
|
470
|
+
@section Heading 1
|
471
|
+
@tip Make the first-level headings larger in size for better readability on small screens.
|
472
|
+
*/
|
473
|
+
h1{
|
474
|
+
/*@editable*/font-size:22px !important;
|
475
|
+
/*@editable*/line-height:125% !important;
|
476
|
+
}
|
477
|
+
|
478
|
+
} @media only screen and (max-width: 480px){
|
479
|
+
/*
|
480
|
+
@tab Mobile Styles
|
481
|
+
@section Heading 2
|
482
|
+
@tip Make the second-level headings larger in size for better readability on small screens.
|
483
|
+
*/
|
484
|
+
h2{
|
485
|
+
/*@editable*/font-size:20px !important;
|
486
|
+
/*@editable*/line-height:125% !important;
|
487
|
+
}
|
488
|
+
|
489
|
+
} @media only screen and (max-width: 480px){
|
490
|
+
/*
|
491
|
+
@tab Mobile Styles
|
492
|
+
@section Heading 3
|
493
|
+
@tip Make the third-level headings larger in size for better readability on small screens.
|
494
|
+
*/
|
495
|
+
h3{
|
496
|
+
/*@editable*/font-size:18px !important;
|
497
|
+
/*@editable*/line-height:125% !important;
|
498
|
+
}
|
499
|
+
|
500
|
+
} @media only screen and (max-width: 480px){
|
501
|
+
/*
|
502
|
+
@tab Mobile Styles
|
503
|
+
@section Heading 4
|
504
|
+
@tip Make the fourth-level headings larger in size for better readability on small screens.
|
505
|
+
*/
|
506
|
+
h4{
|
507
|
+
/*@editable*/font-size:16px !important;
|
508
|
+
/*@editable*/line-height:150% !important;
|
509
|
+
}
|
510
|
+
|
511
|
+
} @media only screen and (max-width: 480px){
|
512
|
+
/*
|
513
|
+
@tab Mobile Styles
|
514
|
+
@section Boxed Text
|
515
|
+
@tip Make the boxed text larger in size for better readability on small screens. We recommend a font size of at least 16px.
|
516
|
+
*/
|
517
|
+
.mcnBoxedTextContentContainer .mcnTextContent,.mcnBoxedTextContentContainer .mcnTextContent p{
|
518
|
+
/*@editable*/font-size:14px !important;
|
519
|
+
/*@editable*/line-height:150% !important;
|
520
|
+
}
|
521
|
+
|
522
|
+
} @media only screen and (max-width: 480px){
|
523
|
+
/*
|
524
|
+
@tab Mobile Styles
|
525
|
+
@section Preheader Visibility
|
526
|
+
@tip Set the visibility of the email's preheader on small screens. You can hide it to save space.
|
527
|
+
*/
|
528
|
+
#templatePreheader{
|
529
|
+
/*@editable*/display:block !important;
|
530
|
+
}
|
531
|
+
|
532
|
+
} @media only screen and (max-width: 480px){
|
533
|
+
/*
|
534
|
+
@tab Mobile Styles
|
535
|
+
@section Preheader Text
|
536
|
+
@tip Make the preheader text larger in size for better readability on small screens.
|
537
|
+
*/
|
538
|
+
#templatePreheader .mcnTextContent,#templatePreheader .mcnTextContent p{
|
539
|
+
/*@editable*/font-size:14px !important;
|
540
|
+
/*@editable*/line-height:150% !important;
|
541
|
+
}
|
542
|
+
|
543
|
+
} @media only screen and (max-width: 480px){
|
544
|
+
/*
|
545
|
+
@tab Mobile Styles
|
546
|
+
@section Header Text
|
547
|
+
@tip Make the header text larger in size for better readability on small screens.
|
548
|
+
*/
|
549
|
+
#templateHeader .mcnTextContent,#templateHeader .mcnTextContent p{
|
550
|
+
/*@editable*/font-size:16px !important;
|
551
|
+
/*@editable*/line-height:150% !important;
|
552
|
+
}
|
553
|
+
|
554
|
+
} @media only screen and (max-width: 480px){
|
555
|
+
/*
|
556
|
+
@tab Mobile Styles
|
557
|
+
@section Body Text
|
558
|
+
@tip Make the body text larger in size for better readability on small screens. We recommend a font size of at least 16px.
|
559
|
+
*/
|
560
|
+
#templateBody .mcnTextContent,#templateBody .mcnTextContent p{
|
561
|
+
/*@editable*/font-size:16px !important;
|
562
|
+
/*@editable*/line-height:150% !important;
|
563
|
+
}
|
564
|
+
|
565
|
+
} @media only screen and (max-width: 480px){
|
566
|
+
/*
|
567
|
+
@tab Mobile Styles
|
568
|
+
@section Column Text
|
569
|
+
@tip Make the column text larger in size for better readability on small screens. We recommend a font size of at least 16px.
|
570
|
+
*/
|
571
|
+
#templateColumns .columnContainer .mcnTextContent,#templateColumns .columnContainer .mcnTextContent p{
|
572
|
+
/*@editable*/font-size:16px !important;
|
573
|
+
/*@editable*/line-height:150% !important;
|
574
|
+
}
|
575
|
+
|
576
|
+
} @media only screen and (max-width: 480px){
|
577
|
+
/*
|
578
|
+
@tab Mobile Styles
|
579
|
+
@section Footer Text
|
580
|
+
@tip Make the footer content text larger in size for better readability on small screens.
|
581
|
+
*/
|
582
|
+
#templateFooter .mcnTextContent,#templateFooter .mcnTextContent p{
|
583
|
+
/*@editable*/font-size:14px !important;
|
584
|
+
/*@editable*/line-height:150% !important;
|
585
|
+
}
|
586
|
+
|
587
|
+
}</style></head>
|
588
|
+
<body>
|
589
|
+
<!--*|IF:MC_PREVIEW_TEXT|*-->
|
590
|
+
<!--[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]-->
|
591
|
+
<!--*|END:IF|*-->
|
592
|
+
<center>
|
593
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable">
|
594
|
+
<tr>
|
595
|
+
<td align="center" valign="top" id="bodyCell">
|
596
|
+
<!-- BEGIN TEMPLATE // -->
|
597
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
598
|
+
<tr>
|
599
|
+
<td align="center" valign="top" id="templatePreheader">
|
600
|
+
<!--[if (gte mso 9)|(IE)]>
|
601
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
602
|
+
<tr>
|
603
|
+
<td align="center" valign="top" width="600" style="width:600px;">
|
604
|
+
<![endif]-->
|
605
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
606
|
+
<tr>
|
607
|
+
<td valign="top" class="preheaderContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
608
|
+
<tbody class="mcnTextBlockOuter">
|
609
|
+
<tr>
|
610
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
611
|
+
<!--[if mso]>
|
612
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
613
|
+
<tr>
|
614
|
+
<![endif]-->
|
615
|
+
|
616
|
+
<!--[if mso]>
|
617
|
+
<td valign="top" width="600" style="width:600px;">
|
618
|
+
<![endif]-->
|
619
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
620
|
+
<tbody><tr>
|
621
|
+
|
622
|
+
<td valign="top" class="mcnTextContent" style="padding: 0px 18px 9px; text-align: center;">
|
623
|
+
|
624
|
+
<a href="*|ARCHIVE|*" target="_blank">View this email in your browser</a>
|
625
|
+
</td>
|
626
|
+
</tr>
|
627
|
+
</tbody></table>
|
628
|
+
<!--[if mso]>
|
629
|
+
</td>
|
630
|
+
<![endif]-->
|
631
|
+
|
632
|
+
<!--[if mso]>
|
633
|
+
</tr>
|
634
|
+
</table>
|
635
|
+
<![endif]-->
|
636
|
+
</td>
|
637
|
+
</tr>
|
638
|
+
</tbody>
|
639
|
+
</table></td>
|
640
|
+
</tr>
|
641
|
+
</table>
|
642
|
+
<!--[if (gte mso 9)|(IE)]>
|
643
|
+
</td>
|
644
|
+
</tr>
|
645
|
+
</table>
|
646
|
+
<![endif]-->
|
647
|
+
</td>
|
648
|
+
</tr>
|
649
|
+
<tr>
|
650
|
+
<td align="center" valign="top" id="templateHeader">
|
651
|
+
<!--[if (gte mso 9)|(IE)]>
|
652
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
653
|
+
<tr>
|
654
|
+
<td align="center" valign="top" width="600" style="width:600px;">
|
655
|
+
<![endif]-->
|
656
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
657
|
+
<tr>
|
658
|
+
<td valign="top" class="headerContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
|
659
|
+
<tbody class="mcnImageBlockOuter">
|
660
|
+
<tr>
|
661
|
+
<td valign="top" style="padding:9px" class="mcnImageBlockInner">
|
662
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
|
663
|
+
<tbody><tr>
|
664
|
+
<td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
|
665
|
+
|
666
|
+
|
667
|
+
<img align="center" alt="" src="*|BRAND:LOGO|*" width="196" style="max-width:196px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
|
668
|
+
|
669
|
+
|
670
|
+
</td>
|
671
|
+
</tr>
|
672
|
+
</tbody></table>
|
673
|
+
</td>
|
674
|
+
</tr>
|
675
|
+
</tbody>
|
676
|
+
</table></td>
|
677
|
+
</tr>
|
678
|
+
</table>
|
679
|
+
<!--[if (gte mso 9)|(IE)]>
|
680
|
+
</td>
|
681
|
+
</tr>
|
682
|
+
</table>
|
683
|
+
<![endif]-->
|
684
|
+
</td>
|
685
|
+
</tr>
|
686
|
+
<tr>
|
687
|
+
<td align="center" valign="top" id="templateBody">
|
688
|
+
<!--[if (gte mso 9)|(IE)]>
|
689
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
690
|
+
<tr>
|
691
|
+
<td align="center" valign="top" width="600" style="width:600px;">
|
692
|
+
<![endif]-->
|
693
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
694
|
+
<tr>
|
695
|
+
<td valign="top" class="bodyContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
696
|
+
<tbody class="mcnTextBlockOuter">
|
697
|
+
<tr>
|
698
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
699
|
+
<!--[if mso]>
|
700
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
701
|
+
<tr>
|
702
|
+
<![endif]-->
|
703
|
+
|
704
|
+
<!--[if mso]>
|
705
|
+
<td valign="top" width="600" style="width:600px;">
|
706
|
+
<![endif]-->
|
707
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
708
|
+
<tbody><tr>
|
709
|
+
|
710
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
711
|
+
|
712
|
+
<h1>It's time to design your email.</h1><p>Now that you've selected a template, you'll define the layout of your email and give your content a place to live by adding, rearranging, and deleting content blocks.</p>
|
713
|
+
</td>
|
714
|
+
</tr>
|
715
|
+
</tbody></table>
|
716
|
+
<!--[if mso]>
|
717
|
+
</td>
|
718
|
+
<![endif]-->
|
719
|
+
|
720
|
+
<!--[if mso]>
|
721
|
+
</tr>
|
722
|
+
</table>
|
723
|
+
<![endif]-->
|
724
|
+
</td>
|
725
|
+
</tr>
|
726
|
+
</tbody>
|
727
|
+
</table></td>
|
728
|
+
</tr>
|
729
|
+
</table>
|
730
|
+
<!--[if (gte mso 9)|(IE)]>
|
731
|
+
</td>
|
732
|
+
</tr>
|
733
|
+
</table>
|
734
|
+
<![endif]-->
|
735
|
+
</td>
|
736
|
+
</tr>
|
737
|
+
<tr>
|
738
|
+
<td align="center" valign="top" id="templateColumns">
|
739
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
740
|
+
<tr>
|
741
|
+
<td valign="top">
|
742
|
+
<!--[if (gte mso 9)|(IE)]>
|
743
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
744
|
+
<tr>
|
745
|
+
<td align="center" valign="top" width="300" style="width:300px;">
|
746
|
+
<![endif]-->
|
747
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="300" class="columnWrapper">
|
748
|
+
<tr>
|
749
|
+
<td valign="top" class="columnContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
750
|
+
<tbody class="mcnTextBlockOuter">
|
751
|
+
<tr>
|
752
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
753
|
+
<!--[if mso]>
|
754
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
755
|
+
<tr>
|
756
|
+
<![endif]-->
|
757
|
+
|
758
|
+
<!--[if mso]>
|
759
|
+
<td valign="top" width="300" style="width:300px;">
|
760
|
+
<![endif]-->
|
761
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
762
|
+
<tbody><tr>
|
763
|
+
|
764
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
765
|
+
|
766
|
+
You can create unique layouts by placing a variety of content blocks in different sections of your template. <p>Use the “design” tab to set styles like background colors and borders.</p>If you need a bit of inspiration, you can <a class="mc-template-link" href="http://inspiration.mailchimp.com">see what other Mailchimp users are doing</a>, or <a class="mc-template-link" href="http://mailchimp.com/resources/email-design-guide/">learn about email design</a> and blaze your own trail.
|
767
|
+
</td>
|
768
|
+
</tr>
|
769
|
+
</tbody></table>
|
770
|
+
<!--[if mso]>
|
771
|
+
</td>
|
772
|
+
<![endif]-->
|
773
|
+
|
774
|
+
<!--[if mso]>
|
775
|
+
</tr>
|
776
|
+
</table>
|
777
|
+
<![endif]-->
|
778
|
+
</td>
|
779
|
+
</tr>
|
780
|
+
</tbody>
|
781
|
+
</table></td>
|
782
|
+
</tr>
|
783
|
+
</table>
|
784
|
+
<!--[if (gte mso 9)|(IE)]>
|
785
|
+
</td>
|
786
|
+
<td align="center" valign="top" width="300" style="width:300px;">
|
787
|
+
<![endif]-->
|
788
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="300" class="columnWrapper">
|
789
|
+
<tr>
|
790
|
+
<td valign="top" class="columnContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageCardBlock">
|
791
|
+
<tbody class="mcnImageCardBlockOuter">
|
792
|
+
<tr>
|
793
|
+
<td class="mcnImageCardBlockInner" valign="top" style="padding-top:9px; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
794
|
+
|
795
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" class="mcnImageCardBottomContent" width="100%" style="background-color: #404040;">
|
796
|
+
<tbody><tr>
|
797
|
+
<td class="mcnImageCardBottomImageContent" align="left" valign="top" style="padding-top:0px; padding-right:0px; padding-bottom:0; padding-left:0px;">
|
798
|
+
|
799
|
+
<table style="width: 264px;" class="mcpreview-image-uploader" data-mc-id=""></table>
|
800
|
+
|
801
|
+
</td>
|
802
|
+
</tr>
|
803
|
+
<tr>
|
804
|
+
<td class="mcnTextContent" valign="top" style="padding: 9px 18px;color: #F2F2F2;font-family: Helvetica;font-size: 14px;font-weight: normal;text-align: center;" width="246">
|
805
|
+
Input caption text here. Use the block's Settings tab to change the caption position and set other styles.
|
806
|
+
</td>
|
807
|
+
</tr>
|
808
|
+
</tbody></table>
|
809
|
+
|
810
|
+
|
811
|
+
|
812
|
+
|
813
|
+
</td>
|
814
|
+
</tr>
|
815
|
+
</tbody>
|
816
|
+
</table></td>
|
817
|
+
</tr>
|
818
|
+
</table>
|
819
|
+
<!--[if (gte mso 9)|(IE)]>
|
820
|
+
</td>
|
821
|
+
</tr>
|
822
|
+
</table>
|
823
|
+
<![endif]-->
|
824
|
+
</td>
|
825
|
+
</tr>
|
826
|
+
</table>
|
827
|
+
</td>
|
828
|
+
</tr>
|
829
|
+
<tr>
|
830
|
+
<td align="center" valign="top" id="templateFooter">
|
831
|
+
<!--[if (gte mso 9)|(IE)]>
|
832
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
833
|
+
<tr>
|
834
|
+
<td align="center" valign="top" width="600" style="width:600px;">
|
835
|
+
<![endif]-->
|
836
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
|
837
|
+
<tr>
|
838
|
+
<td valign="top" class="footerContainer"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowBlock" style="min-width:100%;">
|
839
|
+
<tbody class="mcnFollowBlockOuter">
|
840
|
+
<tr>
|
841
|
+
<td align="center" valign="top" style="padding:9px" class="mcnFollowBlockInner">
|
842
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentContainer" style="min-width:100%;">
|
843
|
+
<tbody><tr>
|
844
|
+
<td align="center" style="padding-left:9px;padding-right:9px;">
|
845
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width:100%;" class="mcnFollowContent">
|
846
|
+
<tbody><tr>
|
847
|
+
<td align="center" valign="top" style="padding-top:9px; padding-right:9px; padding-left:9px;">
|
848
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0">
|
849
|
+
<tbody><tr>
|
850
|
+
<td align="center" valign="top">
|
851
|
+
<!--[if mso]>
|
852
|
+
<table align="center" border="0" cellspacing="0" cellpadding="0">
|
853
|
+
<tr>
|
854
|
+
<![endif]-->
|
855
|
+
|
856
|
+
<!--[if mso]>
|
857
|
+
<td align="center" valign="top">
|
858
|
+
<![endif]-->
|
859
|
+
|
860
|
+
|
861
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
|
862
|
+
<tbody><tr>
|
863
|
+
<td valign="top" style="padding-right:10px; padding-bottom:9px;" class="mcnFollowContentItemContainer">
|
864
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
|
865
|
+
<tbody><tr>
|
866
|
+
<td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
|
867
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="">
|
868
|
+
<tbody><tr>
|
869
|
+
|
870
|
+
<td align="center" valign="middle" width="24" class="mcnFollowIconContent">
|
871
|
+
<a href="http://www.twitter.com/" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/color-twitter-48.png" alt="Twitter" style="display:block;" height="24" width="24" class=""></a>
|
872
|
+
</td>
|
873
|
+
|
874
|
+
|
875
|
+
</tr>
|
876
|
+
</tbody></table>
|
877
|
+
</td>
|
878
|
+
</tr>
|
879
|
+
</tbody></table>
|
880
|
+
</td>
|
881
|
+
</tr>
|
882
|
+
</tbody></table>
|
883
|
+
|
884
|
+
<!--[if mso]>
|
885
|
+
</td>
|
886
|
+
<![endif]-->
|
887
|
+
|
888
|
+
<!--[if mso]>
|
889
|
+
<td align="center" valign="top">
|
890
|
+
<![endif]-->
|
891
|
+
|
892
|
+
|
893
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
|
894
|
+
<tbody><tr>
|
895
|
+
<td valign="top" style="padding-right:10px; padding-bottom:9px;" class="mcnFollowContentItemContainer">
|
896
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
|
897
|
+
<tbody><tr>
|
898
|
+
<td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
|
899
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="">
|
900
|
+
<tbody><tr>
|
901
|
+
|
902
|
+
<td align="center" valign="middle" width="24" class="mcnFollowIconContent">
|
903
|
+
<a href="http://www.facebook.com" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/color-facebook-48.png" alt="Facebook" style="display:block;" height="24" width="24" class=""></a>
|
904
|
+
</td>
|
905
|
+
|
906
|
+
|
907
|
+
</tr>
|
908
|
+
</tbody></table>
|
909
|
+
</td>
|
910
|
+
</tr>
|
911
|
+
</tbody></table>
|
912
|
+
</td>
|
913
|
+
</tr>
|
914
|
+
</tbody></table>
|
915
|
+
|
916
|
+
<!--[if mso]>
|
917
|
+
</td>
|
918
|
+
<![endif]-->
|
919
|
+
|
920
|
+
<!--[if mso]>
|
921
|
+
<td align="center" valign="top">
|
922
|
+
<![endif]-->
|
923
|
+
|
924
|
+
|
925
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="display:inline;">
|
926
|
+
<tbody><tr>
|
927
|
+
<td valign="top" style="padding-right:0; padding-bottom:9px;" class="mcnFollowContentItemContainer">
|
928
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnFollowContentItem">
|
929
|
+
<tbody><tr>
|
930
|
+
<td align="left" valign="middle" style="padding-top:5px; padding-right:10px; padding-bottom:5px; padding-left:9px;">
|
931
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="">
|
932
|
+
<tbody><tr>
|
933
|
+
|
934
|
+
<td align="center" valign="middle" width="24" class="mcnFollowIconContent">
|
935
|
+
<a href="http://mailchimp.com" target="_blank"><img src="https://cdn-images.mailchimp.com/icons/social-block-v2/color-link-48.png" alt="Website" style="display:block;" height="24" width="24" class=""></a>
|
936
|
+
</td>
|
937
|
+
|
938
|
+
|
939
|
+
</tr>
|
940
|
+
</tbody></table>
|
941
|
+
</td>
|
942
|
+
</tr>
|
943
|
+
</tbody></table>
|
944
|
+
</td>
|
945
|
+
</tr>
|
946
|
+
</tbody></table>
|
947
|
+
|
948
|
+
<!--[if mso]>
|
949
|
+
</td>
|
950
|
+
<![endif]-->
|
951
|
+
|
952
|
+
<!--[if mso]>
|
953
|
+
</tr>
|
954
|
+
</table>
|
955
|
+
<![endif]-->
|
956
|
+
</td>
|
957
|
+
</tr>
|
958
|
+
</tbody></table>
|
959
|
+
</td>
|
960
|
+
</tr>
|
961
|
+
</tbody></table>
|
962
|
+
</td>
|
963
|
+
</tr>
|
964
|
+
</tbody></table>
|
965
|
+
|
966
|
+
</td>
|
967
|
+
</tr>
|
968
|
+
</tbody>
|
969
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnDividerBlock" style="min-width:100%;">
|
970
|
+
<tbody class="mcnDividerBlockOuter">
|
971
|
+
<tr>
|
972
|
+
<td class="mcnDividerBlockInner" style="min-width: 100%; padding: 10px 18px 25px;">
|
973
|
+
<table class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%;border-top: 2px solid #EEEEEE;">
|
974
|
+
<tbody><tr>
|
975
|
+
<td>
|
976
|
+
<span></span>
|
977
|
+
</td>
|
978
|
+
</tr>
|
979
|
+
</tbody></table>
|
980
|
+
<!--
|
981
|
+
<td class="mcnDividerBlockInner" style="padding: 18px;">
|
982
|
+
<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;" />
|
983
|
+
-->
|
984
|
+
</td>
|
985
|
+
</tr>
|
986
|
+
</tbody>
|
987
|
+
</table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
|
988
|
+
<tbody class="mcnTextBlockOuter">
|
989
|
+
<tr>
|
990
|
+
<td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
|
991
|
+
<!--[if mso]>
|
992
|
+
<table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
|
993
|
+
<tr>
|
994
|
+
<![endif]-->
|
995
|
+
|
996
|
+
<!--[if mso]>
|
997
|
+
<td valign="top" width="600" style="width:600px;">
|
998
|
+
<![endif]-->
|
999
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
|
1000
|
+
<tbody><tr>
|
1001
|
+
|
1002
|
+
<td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
|
1003
|
+
|
1004
|
+
<em>Copyright © *|CURRENT_YEAR|* *|LIST:COMPANY|*, All rights reserved.</em>
|
1005
|
+
<br>
|
1006
|
+
*|IFNOT:ARCHIVE_PAGE|*
|
1007
|
+
*|LIST:DESCRIPTION|*
|
1008
|
+
<br>
|
1009
|
+
<br>
|
1010
|
+
<strong>Our mailing address is:</strong>
|
1011
|
+
<br>
|
1012
|
+
*|HTML:LIST_ADDRESS_HTML|* *|END:IF|*
|
1013
|
+
<br>
|
1014
|
+
<br>
|
1015
|
+
Want to change how you receive these emails?<br>
|
1016
|
+
You can <a href="*|UPDATE_PROFILE|*">update your preferences</a> or <a href="*|UNSUB|*">unsubscribe from this list</a>.
|
1017
|
+
<br>
|
1018
|
+
<br>
|
1019
|
+
*|IF:REWARDS|* *|HTML:REWARDS|*
|
1020
|
+
*|END:IF|*
|
1021
|
+
|
1022
|
+
</td>
|
1023
|
+
</tr>
|
1024
|
+
</tbody></table>
|
1025
|
+
<!--[if mso]>
|
1026
|
+
</td>
|
1027
|
+
<![endif]-->
|
1028
|
+
|
1029
|
+
<!--[if mso]>
|
1030
|
+
</tr>
|
1031
|
+
</table>
|
1032
|
+
<![endif]-->
|
1033
|
+
</td>
|
1034
|
+
</tr>
|
1035
|
+
</tbody>
|
1036
|
+
</table></td>
|
1037
|
+
</tr>
|
1038
|
+
</table>
|
1039
|
+
<!--[if (gte mso 9)|(IE)]>
|
1040
|
+
</td>
|
1041
|
+
</tr>
|
1042
|
+
</table>
|
1043
|
+
<![endif]-->
|
1044
|
+
</td>
|
1045
|
+
</tr>
|
1046
|
+
</table>
|
1047
|
+
<!-- // END TEMPLATE -->
|
1048
|
+
</td>
|
1049
|
+
</tr>
|
1050
|
+
</table>
|
1051
|
+
</center>
|
1052
|
+
<script type="text/javascript" src="/WAbyZUhtL/C/-fIkNMFw/1rOppNmp/RSlzKA/VFRPR3UV/LCoB"></script></body>
|
1053
|
+
</html>
|