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