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,751 @@
|
|
1
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%"
|
2
|
+
style="border-collapse: collapse; height: 100%; margin: 0px; padding: 0px; width: 100%;">
|
3
|
+
<tbody>
|
4
|
+
<tr>
|
5
|
+
<td align="center" valign="top"
|
6
|
+
style="height: 100%; margin: 0px; padding: 0px; width: 100%; border-top: 0px;">
|
7
|
+
|
8
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="border-collapse: collapse;">
|
9
|
+
<tbody>
|
10
|
+
<tr>
|
11
|
+
<td align="center" valign="top"
|
12
|
+
style="background: none 50% 50% / cover no-repeat rgb(244, 227, 39); border-top: 0px; border-bottom: 0px; padding-top: 0px; padding-bottom: 9px;">
|
13
|
+
|
14
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%"
|
15
|
+
style="border-collapse: collapse; max-width: 600px;">
|
16
|
+
<tbody>
|
17
|
+
<tr>
|
18
|
+
<td valign="top"></td>
|
19
|
+
</tr>
|
20
|
+
</tbody>
|
21
|
+
</table>
|
22
|
+
|
23
|
+
</td>
|
24
|
+
</tr>
|
25
|
+
<tr>
|
26
|
+
<td align="center" valign="top"
|
27
|
+
style="background: none 50% 50% / cover no-repeat rgb(198, 0, 0); border-top: 0px; border-bottom: 0px; padding-top: 9px;">
|
28
|
+
|
29
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%"
|
30
|
+
style="border-collapse: collapse; max-width: 600px;">
|
31
|
+
<tbody>
|
32
|
+
<tr>
|
33
|
+
<td valign="top">
|
34
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
35
|
+
style="min-width: 100%; border-collapse: collapse;">
|
36
|
+
<tbody>
|
37
|
+
<tr>
|
38
|
+
<td valign="top" style="padding: 9px 9px 0px;">
|
39
|
+
<table align="left" width="100%" border="0" cellpadding="0" cellspacing="0"
|
40
|
+
style="min-width: 100%; border-collapse: collapse;">
|
41
|
+
<tbody>
|
42
|
+
<tr>
|
43
|
+
<td valign="top" style="padding: 0px 9px; text-align: center;">
|
44
|
+
|
45
|
+
|
46
|
+
<img align="center" alt="" width="80"
|
47
|
+
style="max-width: 80px; padding-bottom: 0px; vertical-align: bottom; border: 0px; height: auto; outline: none; text-decoration: none; display: inline;"
|
48
|
+
src="https://d15g8hc4183yn4.cloudfront.net/wp-content/uploads/2022/10/03183645/80x80_diamond_icon.png" />
|
49
|
+
|
50
|
+
|
51
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%"
|
52
|
+
style="min-width: 100%; border-collapse: collapse;" >
|
53
|
+
<tbody>
|
54
|
+
<tr>
|
55
|
+
<td style="padding-top: 27px;">
|
56
|
+
<table border="0" cellspacing="0" width="100%"
|
57
|
+
style="background-color: rgb(255, 255, 255); border-width: 2px 2px 0px; border-top-style: dashed; border-right-style: dashed; border-left-style: dashed; border-color: initial; border-image: initial; border-bottom-style: initial; border-collapse: collapse; min-width: 100%;">
|
58
|
+
<tbody>
|
59
|
+
<tr>
|
60
|
+
<td valign="top"
|
61
|
+
style="padding: 18px; color: rgb(198, 0, 0); font-family: Helvetica; font-size: 14px; font-weight: normal; text-align: left; word-break: break-word; line-height: 150%;">
|
62
|
+
<div style="text-align: center;"></div>
|
63
|
+
|
64
|
+
</td>
|
65
|
+
</tr>
|
66
|
+
</tbody>
|
67
|
+
</table>
|
68
|
+
</td>
|
69
|
+
</tr>
|
70
|
+
</tbody>
|
71
|
+
</table>
|
72
|
+
|
73
|
+
|
74
|
+
</td>
|
75
|
+
</tr>
|
76
|
+
</tbody>
|
77
|
+
</table>
|
78
|
+
</td>
|
79
|
+
</tr>
|
80
|
+
</tbody>
|
81
|
+
</table>
|
82
|
+
</td>
|
83
|
+
</tr>
|
84
|
+
</tbody>
|
85
|
+
</table>
|
86
|
+
|
87
|
+
</td>
|
88
|
+
</tr>
|
89
|
+
<tr>
|
90
|
+
<td align="center" valign="top"
|
91
|
+
style="background: none 50% 50% / cover no-repeat rgb(51, 204, 204); border-top: 0px; border-bottom: 0px;">
|
92
|
+
|
93
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%"
|
94
|
+
style="border-collapse: collapse; max-width: 600px;">
|
95
|
+
<tbody>
|
96
|
+
<tr>
|
97
|
+
<td valign="top">
|
98
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
99
|
+
style="min-width: 100%; border-collapse: collapse;">
|
100
|
+
|
101
|
+
<tbody>
|
102
|
+
<tr>
|
103
|
+
<td valign="top">
|
104
|
+
|
105
|
+
|
106
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%"
|
107
|
+
style="min-width: 100%; border-collapse: collapse;"
|
108
|
+
>
|
109
|
+
<tbody>
|
110
|
+
<tr>
|
111
|
+
|
112
|
+
<td style="padding-top: 0px; padding-left: 18px; padding-right: 18px;">
|
113
|
+
|
114
|
+
<table border="0" cellspacing="0"
|
115
|
+
width="100%"
|
116
|
+
style="background-color: rgb(255, 255, 255); border-width: 0px 2px; border-right-style: dashed; border-left-style: dashed; border-color: initial; border-image: initial; border-top-style: initial; border-bottom-style: initial; border-collapse: collapse; min-width: 100%;">
|
117
|
+
<tbody>
|
118
|
+
<tr>
|
119
|
+
<td valign="top"
|
120
|
+
style="padding: 18px; color: rgb(198, 0, 0); font-family: Helvetica; font-size: 14px; font-weight: normal; text-align: left; word-break: break-word; line-height: 150%;">
|
121
|
+
<div style="text-align: center;">
|
122
|
+
<a href="https://wasya.co/landing-pages/ruby-on-rails-development-1"
|
123
|
+
style="color: rgb(0, 124, 137); font-weight: normal; text-decoration: underline;"
|
124
|
+
target="_blank"
|
125
|
+
data-saferedirecturl="https://wasya.co/landing-pages/ruby-on-rails-development-1"
|
126
|
+
>
|
127
|
+
<img height="64"
|
128
|
+
style="border: 0px; width: 257px; height: 64px; margin: 0px; outline: none; text-decoration: none;"
|
129
|
+
width="257"
|
130
|
+
src="https://d15g8hc4183yn4.cloudfront.net/wp-content/uploads/2022/10/03183647/257x64_wasya_co-logo.png" />
|
131
|
+
</a>
|
132
|
+
</div>
|
133
|
+
|
134
|
+
<h1
|
135
|
+
style="text-align: center; display: block; margin: 0px 0 40px 0; padding: 0px; color: rgb(254, 0, 0); font-family: Helvetica; font-size: 26px; font-style: normal; font-weight: bold; line-height: 125%; letter-spacing: normal;">
|
136
|
+
<span >Ruby</span> on <span >Rails</span>
|
137
|
+
Application <span >Development</span></h1>
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
|
142
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
143
|
+
style="min-width: 100%; border-collapse: collapse;">
|
144
|
+
<tbody>
|
145
|
+
<tr>
|
146
|
+
<td valign="top" style="padding-top: 9px;">
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
151
|
+
style="max-width: 200px; border-collapse: collapse;"
|
152
|
+
width="100%" >
|
153
|
+
<tbody>
|
154
|
+
<tr>
|
155
|
+
<td valign="top"
|
156
|
+
style="padding: 0px 18px 9px; color: rgb(0, 0, 0); font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-style: normal; font-weight: bold; word-break: break-word; font-size: 16px; line-height: 150%; text-align: right;">
|
157
|
+
<div>
|
158
|
+
<img height="100"
|
159
|
+
style="border: 0px; width: 100px; height: 100px; margin: 0px; outline: none; text-decoration: none;"
|
160
|
+
width="100"
|
161
|
+
src="https://d15g8hc4183yn4.cloudfront.net/wp-content/uploads/2022/10/03183646/100x100_floppy_icon.png" />
|
162
|
+
</div>
|
163
|
+
</td>
|
164
|
+
</tr>
|
165
|
+
</tbody>
|
166
|
+
</table>
|
167
|
+
|
168
|
+
|
169
|
+
|
170
|
+
<table align="left" valign="center" border="0" cellpadding="0" cellspacing="0" height="100"
|
171
|
+
style="max-width: 300px; border-collapse: collapse;"
|
172
|
+
width="100%"
|
173
|
+
>
|
174
|
+
<tbody>
|
175
|
+
<tr>
|
176
|
+
<td valign="center"
|
177
|
+
style="color: rgb(0, 0, 0); font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-style: normal; font-weight: bold; word-break: break-word; font-size: 16px; line-height: 150%; text-align: left;">
|
178
|
+
Support for & Migration of<br>Legacy Systems
|
179
|
+
</td>
|
180
|
+
</tr>
|
181
|
+
</tbody>
|
182
|
+
</table>
|
183
|
+
|
184
|
+
|
185
|
+
|
186
|
+
</td>
|
187
|
+
</tr>
|
188
|
+
</tbody>
|
189
|
+
</table>
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
|
194
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
195
|
+
style="min-width: 100%; border-collapse: collapse;">
|
196
|
+
<tbody>
|
197
|
+
<tr>
|
198
|
+
<td valign="top" style="padding-top: 9px;">
|
199
|
+
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
|
204
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
205
|
+
height="100px"
|
206
|
+
style="max-width: 300px; border-collapse: collapse;"
|
207
|
+
width="100%"
|
208
|
+
>
|
209
|
+
<tbody>
|
210
|
+
<tr>
|
211
|
+
<td valign="center"
|
212
|
+
|
213
|
+
style="padding: 0px 18px 9px; color: rgb(0, 0, 0); font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-style: normal; font-weight: bold; word-break: break-word; font-size: 16px; line-height: 150%; text-align: right;">
|
214
|
+
Greenfield <span class="il">Development</span> of<br>New Systems
|
215
|
+
</td>
|
216
|
+
</tr>
|
217
|
+
</tbody>
|
218
|
+
</table>
|
219
|
+
|
220
|
+
|
221
|
+
|
222
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
223
|
+
style="max-width: 200px; border-collapse: collapse;"
|
224
|
+
width="100%"
|
225
|
+
>
|
226
|
+
<tbody>
|
227
|
+
<tr>
|
228
|
+
<td valign="top"
|
229
|
+
|
230
|
+
style="padding: 0px 18px 9px; color: rgb(0, 0, 0); font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-style: normal; font-weight: bold; word-break: break-word; font-size: 16px; line-height: 150%; text-align: left;">
|
231
|
+
<div class="m_7956922134145776498img-lg-right-desktop">
|
232
|
+
<img height="100"
|
233
|
+
style="border: 0px; width: 100px; height: 100px; margin: 0px; outline: none; text-decoration: none;"
|
234
|
+
width="100"
|
235
|
+
src="https://d15g8hc4183yn4.cloudfront.net/wp-content/uploads/2022/10/03183646/100x100_code_icon.png" />
|
236
|
+
</div>
|
237
|
+
</td>
|
238
|
+
</tr>
|
239
|
+
</tbody>
|
240
|
+
</table>
|
241
|
+
|
242
|
+
|
243
|
+
|
244
|
+
</td>
|
245
|
+
</tr>
|
246
|
+
</tbody>
|
247
|
+
</table>
|
248
|
+
|
249
|
+
|
250
|
+
|
251
|
+
|
252
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
253
|
+
style="min-width: 100%; border-collapse: collapse;">
|
254
|
+
<tbody>
|
255
|
+
<tr>
|
256
|
+
<td valign="top" style="padding-top: 9px;">
|
257
|
+
|
258
|
+
|
259
|
+
|
260
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
261
|
+
style="max-width: 200px; border-collapse: collapse;"
|
262
|
+
width="100%"
|
263
|
+
>
|
264
|
+
<tbody>
|
265
|
+
<tr>
|
266
|
+
<td valign="top"
|
267
|
+
style="padding: 0px 18px 9px; color: rgb(0, 0, 0); font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-style: normal; font-weight: bold; word-break: break-word; font-size: 16px; line-height: 150%; text-align: right;">
|
268
|
+
<div class="m_7956922134145776498img-lg-left">
|
269
|
+
<img
|
270
|
+
height="100"
|
271
|
+
style="border: 0px; width: 100px; height: 100px; margin: 0px; outline: none; text-decoration: none;"
|
272
|
+
width="100"
|
273
|
+
src="https://d15g8hc4183yn4.cloudfront.net/wp-content/uploads/2022/10/03183646/100x100_paper_plane_icon.png" /></div>
|
274
|
+
</td>
|
275
|
+
</tr>
|
276
|
+
</tbody>
|
277
|
+
</table>
|
278
|
+
|
279
|
+
|
280
|
+
|
281
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
282
|
+
style="max-width: 300px; border-collapse: collapse;"
|
283
|
+
height="100px"
|
284
|
+
width="100%"
|
285
|
+
>
|
286
|
+
<tbody>
|
287
|
+
<tr>
|
288
|
+
<td valign="center"
|
289
|
+
style="padding: 0px 18px 9px; color: rgb(0, 0, 0); font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-style: normal; font-weight: bold; word-break: break-word; font-size: 16px; line-height: 150%; text-align: left;">
|
290
|
+
Architecture, Tooling & <br />Continuous Improvement
|
291
|
+
</td>
|
292
|
+
</tr>
|
293
|
+
</tbody>
|
294
|
+
</table>
|
295
|
+
|
296
|
+
|
297
|
+
|
298
|
+
</td>
|
299
|
+
</tr>
|
300
|
+
</tbody>
|
301
|
+
</table>
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
306
|
+
style="min-width: 100%; border-collapse: collapse;">
|
307
|
+
<tbody>
|
308
|
+
<tr>
|
309
|
+
<td valign="top" style="padding-top: 72px;">
|
310
|
+
|
311
|
+
|
312
|
+
|
313
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
314
|
+
style="max-width: 100%; min-width: 100%; border-collapse: collapse;"
|
315
|
+
width="100%"
|
316
|
+
>
|
317
|
+
<tbody>
|
318
|
+
<tr>
|
319
|
+
<td valign="top"
|
320
|
+
|
321
|
+
style="padding: 0px 18px 9px; word-break: break-word; color: rgb(32, 32, 32); font-family: Helvetica; font-size: 16px; line-height: 150%; text-align: left;">
|
322
|
+
We are software <span class="il">development</span>
|
323
|
+
experts who can act as your IT department, resolve
|
324
|
+
technical issues and create new functionality that your
|
325
|
+
business needs to succeed.
|
326
|
+
</td>
|
327
|
+
</tr>
|
328
|
+
</tbody>
|
329
|
+
</table>
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
</td>
|
334
|
+
</tr>
|
335
|
+
</tbody>
|
336
|
+
</table>
|
337
|
+
|
338
|
+
|
339
|
+
|
340
|
+
|
341
|
+
|
342
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
343
|
+
style="min-width: 100%; border-collapse: collapse;">
|
344
|
+
<tbody>
|
345
|
+
<tr>
|
346
|
+
<td valign="top" style="padding-top: 9px;">
|
347
|
+
|
348
|
+
|
349
|
+
|
350
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
351
|
+
style="max-width: 90px; border-collapse: collapse;"
|
352
|
+
width="100%">
|
353
|
+
<tbody>
|
354
|
+
<tr>
|
355
|
+
<td valign="top"
|
356
|
+
|
357
|
+
style="padding: 0px 18px 9px; word-break: break-word; color: rgb(32, 32, 32); font-family: Helvetica; font-size: 16px; line-height: 150%; text-align: left;">
|
358
|
+
<div style="text-align: right;"><img height="50"
|
359
|
+
style="border: 0px; width: 23px; height: 50px; margin: 0px; outline: none; text-decoration: none;"
|
360
|
+
width="23"
|
361
|
+
src="https://d15g8hc4183yn4.cloudfront.net/wp-content/uploads/2022/10/03183644/23x50_paragraph_icon.png" /></div>
|
362
|
+
</td>
|
363
|
+
</tr>
|
364
|
+
</tbody>
|
365
|
+
</table>
|
366
|
+
|
367
|
+
|
368
|
+
|
369
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
370
|
+
width="80%"
|
371
|
+
style="border-collapse: collapse;">
|
372
|
+
<tbody>
|
373
|
+
<tr>
|
374
|
+
<td valign="top"
|
375
|
+
style="padding: 0px 18px 9px; word-break: break-word; color: rgb(32, 32, 32); font-family: Helvetica; font-size: 16px; line-height: 150%; text-align: left;">
|
376
|
+
<span style="color: rgb(198, 0, 0);"><strong>Scale existing systems, resolve performance bottlenecks, fix critical issues</strong></span>
|
377
|
+
</td>
|
378
|
+
</tr>
|
379
|
+
</tbody>
|
380
|
+
</table>
|
381
|
+
|
382
|
+
|
383
|
+
|
384
|
+
</td>
|
385
|
+
</tr>
|
386
|
+
</tbody>
|
387
|
+
</table>
|
388
|
+
|
389
|
+
|
390
|
+
|
391
|
+
|
392
|
+
|
393
|
+
|
394
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
395
|
+
style="min-width: 100%; border-collapse: collapse;">
|
396
|
+
<tbody>
|
397
|
+
<tr>
|
398
|
+
<td valign="top" style="padding-top: 9px;">
|
399
|
+
|
400
|
+
|
401
|
+
|
402
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
403
|
+
style="max-width: 90px; border-collapse: collapse;"
|
404
|
+
width="100%">
|
405
|
+
<tbody>
|
406
|
+
<tr>
|
407
|
+
|
408
|
+
<td valign="top"
|
409
|
+
|
410
|
+
style="padding: 0px 18px 9px; word-break: break-word; color: rgb(32, 32, 32); font-family: Helvetica; font-size: 16px; line-height: 150%; text-align: left;">
|
411
|
+
|
412
|
+
<div style="text-align: right;"><img height="50"
|
413
|
+
style="border: 0px; width: 23px; height: 50px; margin: 0px; outline: none; text-decoration: none;"
|
414
|
+
width="23"
|
415
|
+
src="https://d15g8hc4183yn4.cloudfront.net/wp-content/uploads/2022/10/03183644/23x50_paragraph_icon.png" /></div>
|
416
|
+
|
417
|
+
</td>
|
418
|
+
</tr>
|
419
|
+
</tbody>
|
420
|
+
</table>
|
421
|
+
|
422
|
+
|
423
|
+
|
424
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
425
|
+
width="80%"
|
426
|
+
style="border-collapse: collapse;">
|
427
|
+
<tbody>
|
428
|
+
<tr>
|
429
|
+
|
430
|
+
<td valign="top"
|
431
|
+
|
432
|
+
style="padding: 0px 18px 9px; word-break: break-word; color: rgb(32, 32, 32); font-family: Helvetica; font-size: 16px; line-height: 150%; text-align: left;">
|
433
|
+
|
434
|
+
<span style="color: rgb(198, 0, 0);"><strong>Implement
|
435
|
+
new features to answer client & internal
|
436
|
+
needs</strong></span>
|
437
|
+
</td>
|
438
|
+
</tr>
|
439
|
+
</tbody>
|
440
|
+
</table>
|
441
|
+
|
442
|
+
|
443
|
+
|
444
|
+
</td>
|
445
|
+
</tr>
|
446
|
+
</tbody>
|
447
|
+
</table>
|
448
|
+
|
449
|
+
|
450
|
+
|
451
|
+
|
452
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
453
|
+
style="min-width: 100%; border-collapse: collapse;">
|
454
|
+
<tbody>
|
455
|
+
<tr>
|
456
|
+
<td valign="top" style="padding-top: 9px;">
|
457
|
+
|
458
|
+
|
459
|
+
|
460
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
461
|
+
style="max-width: 90px; border-collapse: collapse;"
|
462
|
+
width="100%">
|
463
|
+
<tbody>
|
464
|
+
<tr>
|
465
|
+
|
466
|
+
<td valign="top"
|
467
|
+
|
468
|
+
style="padding: 0px 18px 9px; word-break: break-word; color: rgb(32, 32, 32); font-family: Helvetica; font-size: 16px; line-height: 150%; text-align: left;">
|
469
|
+
|
470
|
+
<div style="text-align: right;"><img height="50"
|
471
|
+
style="border: 0px; width: 23px; height: 50px; margin: 0px; outline: none; text-decoration: none;"
|
472
|
+
width="23"
|
473
|
+
src="https://d15g8hc4183yn4.cloudfront.net/wp-content/uploads/2022/10/03183644/23x50_paragraph_icon.png" /></div>
|
474
|
+
|
475
|
+
</td>
|
476
|
+
</tr>
|
477
|
+
</tbody>
|
478
|
+
</table>
|
479
|
+
|
480
|
+
|
481
|
+
|
482
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
483
|
+
width="80%"
|
484
|
+
style="border-collapse: collapse;">
|
485
|
+
<tbody>
|
486
|
+
<tr>
|
487
|
+
|
488
|
+
<td valign="top"
|
489
|
+
|
490
|
+
style="padding: 0px 18px 9px; word-break: break-word; color: rgb(32, 32, 32); font-family: Helvetica; font-size: 16px; line-height: 150%; text-align: left;">
|
491
|
+
|
492
|
+
<span style="color: rgb(198, 0, 0);"><strong>We provide
|
493
|
+
SLA's, support and 99.9% uptime
|
494
|
+
guarantee</strong></span>
|
495
|
+
</td>
|
496
|
+
</tr>
|
497
|
+
</tbody>
|
498
|
+
</table>
|
499
|
+
|
500
|
+
|
501
|
+
|
502
|
+
</td>
|
503
|
+
</tr>
|
504
|
+
</tbody>
|
505
|
+
</table>
|
506
|
+
|
507
|
+
|
508
|
+
|
509
|
+
|
510
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
511
|
+
style="min-width: 100%; border-collapse: collapse;">
|
512
|
+
<tbody>
|
513
|
+
<tr>
|
514
|
+
<td valign="top" style="padding-top: 9px;">
|
515
|
+
|
516
|
+
|
517
|
+
|
518
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
519
|
+
style="max-width: 100%; min-width: 100%; border-collapse: collapse;"
|
520
|
+
width="100%"
|
521
|
+
>
|
522
|
+
<tbody>
|
523
|
+
<tr>
|
524
|
+
|
525
|
+
<td valign="top"
|
526
|
+
|
527
|
+
style="padding: 0px 18px 72px; word-break: break-word; color: rgb(32, 32, 32); font-family: Helvetica; font-size: 16px; line-height: 150%; text-align: left;">
|
528
|
+
|
529
|
+
Are you ready to schedule a free call with one of our
|
530
|
+
experts to take a deep dive on your project?
|
531
|
+
</td>
|
532
|
+
</tr>
|
533
|
+
</tbody>
|
534
|
+
</table>
|
535
|
+
|
536
|
+
|
537
|
+
|
538
|
+
</td>
|
539
|
+
</tr>
|
540
|
+
</tbody>
|
541
|
+
</table>
|
542
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
543
|
+
style="min-width: 100%; border-collapse: collapse;">
|
544
|
+
<tbody>
|
545
|
+
<tr>
|
546
|
+
<td style="padding: 0px 18px 18px;" valign="top" align="center">
|
547
|
+
<table border="0" cellpadding="0" cellspacing="0"
|
548
|
+
style="border: 1px solid rgb(238, 238, 238); border-radius: 5px; background-color: rgb(198, 0, 0); border-collapse: separate;">
|
549
|
+
<tbody>
|
550
|
+
<tr>
|
551
|
+
<td align="center" valign="middle"
|
552
|
+
style="font-family: Arial; font-size: 16px; padding: 18px;">
|
553
|
+
<a
|
554
|
+
title="Chat with Us!"
|
555
|
+
href="https://wasya.us14.list-manage.com/track/click?u=c1c0b5d8d2e0e77bfc4d6376e&id=3ab93e191d&e=4abeb5bb40"
|
556
|
+
style="font-weight: bold; letter-spacing: 1px; line-height: 100%; text-align: center; text-decoration: none; color: rgb(238, 238, 238); display: block;"
|
557
|
+
target="_blank"
|
558
|
+
data-saferedirecturl="https://www.google.com/url?q=https://wasya.us14.list-manage.com/track/click?u%3Dc1c0b5d8d2e0e77bfc4d6376e%26id%3D3ab93e191d%26e%3D4abeb5bb40&source=gmail&ust=1655004069252000&usg=AOvVaw02TP0pnkLCP35ugpFQIusr">Chat
|
559
|
+
with Us!</a>
|
560
|
+
</td>
|
561
|
+
</tr>
|
562
|
+
</tbody>
|
563
|
+
</table>
|
564
|
+
</td>
|
565
|
+
</tr>
|
566
|
+
</tbody>
|
567
|
+
</table>
|
568
|
+
|
569
|
+
|
570
|
+
|
571
|
+
</td>
|
572
|
+
</tr>
|
573
|
+
</tbody>
|
574
|
+
</table>
|
575
|
+
</td>
|
576
|
+
</tr>
|
577
|
+
</tbody>
|
578
|
+
</table>
|
579
|
+
|
580
|
+
|
581
|
+
|
582
|
+
</td>
|
583
|
+
</tr>
|
584
|
+
</tbody>
|
585
|
+
</table>
|
586
|
+
|
587
|
+
|
588
|
+
</td>
|
589
|
+
</tr>
|
590
|
+
</tbody>
|
591
|
+
</table>
|
592
|
+
|
593
|
+
</td>
|
594
|
+
</tr>
|
595
|
+
<tr>
|
596
|
+
<td align="center" valign="top"
|
597
|
+
style="background: none 50% 50% / cover no-repeat rgb(170, 167, 167); border-top: 0px; border-bottom: 0px; padding-bottom: 9px;">
|
598
|
+
|
599
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%"
|
600
|
+
style="border-collapse: collapse; max-width: 600px;">
|
601
|
+
<tbody>
|
602
|
+
<tr>
|
603
|
+
<td valign="top">
|
604
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
605
|
+
|
606
|
+
style="min-width: 100%; border-collapse: collapse; table-layout: fixed;">
|
607
|
+
|
608
|
+
|
609
|
+
|
610
|
+
|
611
|
+
|
612
|
+
<tbody>
|
613
|
+
<tr>
|
614
|
+
<td>
|
615
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
616
|
+
style="min-width: 100%; border-collapse: collapse;">
|
617
|
+
|
618
|
+
<tbody>
|
619
|
+
<tr>
|
620
|
+
<td valign="top">
|
621
|
+
|
622
|
+
|
623
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%"
|
624
|
+
style="min-width: 100%; border-collapse: collapse;"
|
625
|
+
>
|
626
|
+
<tbody>
|
627
|
+
<tr>
|
628
|
+
|
629
|
+
<td style="padding: 0px 18px 9px;">
|
630
|
+
|
631
|
+
<table border="0" cellspacing="0"
|
632
|
+
width="100%"
|
633
|
+
style="background-color: rgb(255, 251, 251); border-width: 0px 2px 2px; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-color: initial; border-image: initial; border-top-style: initial; border-collapse: collapse; min-width: 100%;">
|
634
|
+
<tbody>
|
635
|
+
<tr>
|
636
|
+
<td valign="top"
|
637
|
+
style="padding: 18px; color: rgb(242, 242, 242); font-family: Helvetica; font-size: 14px; font-weight: normal; text-align: center; word-break: break-word; line-height: 150%;">
|
638
|
+
</td>
|
639
|
+
</tr>
|
640
|
+
</tbody>
|
641
|
+
</table>
|
642
|
+
</td>
|
643
|
+
</tr>
|
644
|
+
</tbody>
|
645
|
+
</table>
|
646
|
+
|
647
|
+
|
648
|
+
|
649
|
+
</td>
|
650
|
+
</tr>
|
651
|
+
</tbody>
|
652
|
+
</table>
|
653
|
+
|
654
|
+
|
655
|
+
|
656
|
+
|
657
|
+
|
658
|
+
|
659
|
+
|
660
|
+
|
661
|
+
</td>
|
662
|
+
</tr>
|
663
|
+
</tbody>
|
664
|
+
<tbody>
|
665
|
+
<tr>
|
666
|
+
<td style="min-width: 100%; padding: 10px 18px 25px;">
|
667
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
668
|
+
style="min-width: 100%; border-top: 2px solid rgb(238, 238, 238); border-collapse: collapse;">
|
669
|
+
<tbody>
|
670
|
+
<tr>
|
671
|
+
<td>
|
672
|
+
<span></span>
|
673
|
+
</td>
|
674
|
+
</tr>
|
675
|
+
</tbody>
|
676
|
+
</table>
|
677
|
+
|
678
|
+
</td>
|
679
|
+
</tr>
|
680
|
+
</tbody>
|
681
|
+
</table>
|
682
|
+
|
683
|
+
|
684
|
+
|
685
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%"
|
686
|
+
style="min-width: 100%; border-collapse: collapse;">
|
687
|
+
<tbody>
|
688
|
+
<tr>
|
689
|
+
<td valign="top" style="padding-top: 9px;">
|
690
|
+
|
691
|
+
|
692
|
+
|
693
|
+
<table align="left" border="0" cellpadding="0" cellspacing="0"
|
694
|
+
style="max-width: 100%; min-width: 100%; border-collapse: collapse;" width="100%"
|
695
|
+
>
|
696
|
+
<tbody>
|
697
|
+
<tr>
|
698
|
+
<td valign="top"
|
699
|
+
style="padding: 0px 18px 27px; color: rgb(204, 204, 204); word-break: break-word; font-family: Helvetica; font-size: 12px; line-height: 150%; text-align: center;">
|
700
|
+
<div style="text-align: center;">
|
701
|
+
Wasya Co is a niche consultancy in Austin, TX.<br>
|
702
|
+
We respect your privacy - click to unsubscribe.<br>
|
703
|
+
You can also reply to request more info.
|
704
|
+
</div>
|
705
|
+
</td>
|
706
|
+
</tr>
|
707
|
+
</tbody>
|
708
|
+
</table>
|
709
|
+
|
710
|
+
|
711
|
+
|
712
|
+
</td>
|
713
|
+
</tr>
|
714
|
+
</tbody>
|
715
|
+
</table>
|
716
|
+
|
717
|
+
|
718
|
+
</td>
|
719
|
+
</tr>
|
720
|
+
</tbody>
|
721
|
+
</table>
|
722
|
+
|
723
|
+
</td>
|
724
|
+
</tr>
|
725
|
+
|
726
|
+
|
727
|
+
<tr>
|
728
|
+
<td align="center" valign="top"
|
729
|
+
style="background: none 50% 50% / cover no-repeat rgb(244, 227, 39); border-top: 0px; border-bottom: 0px; padding-top: 0px; padding-bottom: 9px;">
|
730
|
+
|
731
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%"
|
732
|
+
style="border-collapse: collapse; max-width: 600px;">
|
733
|
+
<tbody>
|
734
|
+
<tr>
|
735
|
+
<td valign="top"></td>
|
736
|
+
</tr>
|
737
|
+
</tbody>
|
738
|
+
</table>
|
739
|
+
|
740
|
+
</td>
|
741
|
+
</tr>
|
742
|
+
|
743
|
+
|
744
|
+
|
745
|
+
</tbody>
|
746
|
+
</table>
|
747
|
+
|
748
|
+
</td>
|
749
|
+
</tr>
|
750
|
+
</tbody>
|
751
|
+
</table>
|