good_mailer 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3 -0
  3. data/Rakefile +20 -0
  4. data/app/mailers/good_mailer/mailers/mark_mailer.rb +28 -0
  5. data/app/mailers/good_mailer/mailers/user_mailer.rb +14 -0
  6. data/app/views/good_mailer/mailers/mark_mailer/mark_email.html.erb +4 -0
  7. data/app/views/good_mailer/mailers/user_mailer/welcome_email.html.erb +3 -0
  8. data/app/views/layouts/good_mailer/mailers/email.html.erb +379 -0
  9. data/config/routes.rb +2 -0
  10. data/lib/good_mailer.rb +5 -0
  11. data/lib/good_mailer/configuration.rb +11 -0
  12. data/lib/good_mailer/engine.rb +19 -0
  13. data/lib/good_mailer/version.rb +3 -0
  14. data/lib/tasks/good_mailer_tasks.rake +4 -0
  15. data/spec/dummy/README.rdoc +28 -0
  16. data/spec/dummy/Rakefile +6 -0
  17. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  18. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  19. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  20. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  21. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/spec/dummy/bin/bundle +3 -0
  23. data/spec/dummy/bin/rails +4 -0
  24. data/spec/dummy/bin/rake +4 -0
  25. data/spec/dummy/config.ru +4 -0
  26. data/spec/dummy/config/application.rb +23 -0
  27. data/spec/dummy/config/boot.rb +5 -0
  28. data/spec/dummy/config/environment.rb +5 -0
  29. data/spec/dummy/config/environments/development.rb +37 -0
  30. data/spec/dummy/config/environments/production.rb +82 -0
  31. data/spec/dummy/config/environments/test.rb +39 -0
  32. data/spec/dummy/config/initializers/assets.rb +8 -0
  33. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  35. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  36. data/spec/dummy/config/initializers/good_mailer.rb +9 -0
  37. data/spec/dummy/config/initializers/inflections.rb +16 -0
  38. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  39. data/spec/dummy/config/initializers/session_store.rb +3 -0
  40. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/spec/dummy/config/locales/en.yml +23 -0
  42. data/spec/dummy/config/routes.rb +4 -0
  43. data/spec/dummy/public/404.html +67 -0
  44. data/spec/dummy/public/422.html +67 -0
  45. data/spec/dummy/public/500.html +66 -0
  46. data/spec/dummy/public/favicon.ico +0 -0
  47. data/spec/mailers/can_send_mark_emails_spec.rb +39 -0
  48. data/spec/mailers/welcome_email_spec.rb +23 -0
  49. data/spec/spec_helper.rb +1 -0
  50. metadata +226 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 647e4984b5af6ea94f9f329bf72e93c96e03d94a
4
+ data.tar.gz: d215ec2667a2ac86ecc3ecdd8ab6b8d535d3d33b
5
+ SHA512:
6
+ metadata.gz: dd2ea7f739745887f2c660c312a2d93583d7bfe7310ee3b1f321c6eb27f51db0d54a7096cc56e00f7f2c04f6ffd05edca9af523a06cfbd6d6278be26883771ab
7
+ data.tar.gz: d29db3cf6c173b31f05b595babc141a3e580ca72a3018161bb191f1d61f6fb1ff07132fac77bcb0789757f573d251b713cb5c5ddbca7f643570c02339acf5349
@@ -0,0 +1,3 @@
1
+ = GoodMailer
2
+
3
+ This project rocks and uses MIT-LICENSE.
@@ -0,0 +1,20 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'GoodMailer'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,28 @@
1
+ module GoodMailer
2
+ module Mailers
3
+ class MarkMailer < ActionMailer::Base
4
+ include ActiveSupport::NumberHelper
5
+
6
+ default from: 'goodscout <marks@goodscout.io>'
7
+ layout 'good_mailer/mailers/email'
8
+
9
+ def mark_email(email:,
10
+ product_name:,
11
+ price:,
12
+ short_url:,
13
+ scout_id:)
14
+
15
+ @product_name = product_name
16
+ @price = number_to_currency(price)
17
+ @short_url = short_url
18
+ @scout_id = scout_id
19
+
20
+ mail(to: email,
21
+ subject: "Mark Found! #{@price} - #{@product_name}",
22
+ content_type: 'text/html')
23
+
24
+ headers['X-MC-Track'] = 'opens'
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,14 @@
1
+ module GoodMailer
2
+ module Mailers
3
+ class UserMailer < ActionMailer::Base
4
+ default from: 'goodscout <info@goodscout.io>'
5
+ layout 'good_mailer/mailers/email'
6
+
7
+ def welcome_email(email:)
8
+ mail(to: email,
9
+ subject: 'Welcome to GoodScout!',
10
+ content_type: 'text/html')
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,4 @@
1
+ <p>An eBay item matching your scout for <b><%= @product_name %></b> has just been listed for <b><%= @price %></b>! </p>
2
+ <p><a href= <%= @short_url %> >Click here to review the item on eBay and purchase!</a></p>
3
+ <p>Find what you’re looking for? Need to adjust or disable your scout? <%= link_to 'Click here', "https://app.goodscout.io/scouts/#{@scout_id}" %></p>
4
+ <p>Good luck!</p>
@@ -0,0 +1,3 @@
1
+ <p>Welcome to GoodScout, advanced buying software for eBay. We are here to save you time and money, and help you with all of your buying needs on eBay. </p>
2
+ <p> You can get started right away by clicking here and adding as many scouts as you like. </p>
3
+ <p>We also recommend that you connect your account to eBay to begin setting up <b>real time scouts</b> and receive all of our great features. </p>
@@ -0,0 +1,379 @@
1
+ <!-- Inliner Build Version 4a491cbbdbf75d9c4e9bed94bc553ed45f2d0603 -->
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml">
4
+ <!-- head start below -->
5
+ <head>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+ <meta name="viewport" content="width=device-width" />
8
+ </head>
9
+ <!-- head end above -->
10
+ <body style="width: 100% !important; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #222222; display: block; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: left; line-height: 19px; font-size: 14px; margin: 0; padding: 0;"><style type="text/css">
11
+
12
+ @import url(http://fonts.googleapis.com/css?family=Raleway);
13
+
14
+ a:hover {
15
+ color: #2795b6 !important;
16
+ }
17
+ a:active {
18
+ color: #2795b6 !important;
19
+ }
20
+ a:visited {
21
+ color: #2ba6cb !important;
22
+ }
23
+ h1 a:active {
24
+ color: #2ba6cb !important;
25
+ }
26
+ h2 a:active {
27
+ color: #2ba6cb !important;
28
+ }
29
+ h3 a:active {
30
+ color: #2ba6cb !important;
31
+ }
32
+ h4 a:active {
33
+ color: #2ba6cb !important;
34
+ }
35
+ h5 a:active {
36
+ color: #2ba6cb !important;
37
+ }
38
+ h6 a:active {
39
+ color: #2ba6cb !important;
40
+ }
41
+ h1 a:visited {
42
+ color: #2ba6cb !important;
43
+ }
44
+ h2 a:visited {
45
+ color: #2ba6cb !important;
46
+ }
47
+ h3 a:visited {
48
+ color: #2ba6cb !important;
49
+ }
50
+ h4 a:visited {
51
+ color: #2ba6cb !important;
52
+ }
53
+ h5 a:visited {
54
+ color: #2ba6cb !important;
55
+ }
56
+ h6 a:visited {
57
+ color: #2ba6cb !important;
58
+ }
59
+ table.button:hover td {
60
+ background: #2795b6 !important;
61
+ }
62
+ table.button:visited td {
63
+ background: #2795b6 !important;
64
+ }
65
+ table.button:active td {
66
+ background: #2795b6 !important;
67
+ }
68
+ table.button:hover td a {
69
+ color: #fff !important;
70
+ }
71
+ table.button:visited td a {
72
+ color: #fff !important;
73
+ }
74
+ table.button:active td a {
75
+ color: #fff !important;
76
+ }
77
+ table.button:hover td {
78
+ background: #2795b6 !important;
79
+ }
80
+ table.tiny-button:hover td {
81
+ background: #2795b6 !important;
82
+ }
83
+ table.small-button:hover td {
84
+ background: #2795b6 !important;
85
+ }
86
+ table.medium-button:hover td {
87
+ background: #2795b6 !important;
88
+ }
89
+ table.large-button:hover td {
90
+ background: #2795b6 !important;
91
+ }
92
+ table.button:hover td a {
93
+ color: #ffffff !important;
94
+ }
95
+ table.button:active td a {
96
+ color: #ffffff !important;
97
+ }
98
+ table.button td a:visited {
99
+ color: #ffffff !important;
100
+ }
101
+ table.tiny-button:hover td a {
102
+ color: #ffffff !important;
103
+ }
104
+ table.tiny-button:active td a {
105
+ color: #ffffff !important;
106
+ }
107
+ table.tiny-button td a:visited {
108
+ color: #ffffff !important;
109
+ }
110
+ table.small-button:hover td a {
111
+ color: #ffffff !important;
112
+ }
113
+ table.small-button:active td a {
114
+ color: #ffffff !important;
115
+ }
116
+ table.small-button td a:visited {
117
+ color: #ffffff !important;
118
+ }
119
+ table.medium-button:hover td a {
120
+ color: #ffffff !important;
121
+ }
122
+ table.medium-button:active td a {
123
+ color: #ffffff !important;
124
+ }
125
+ table.medium-button td a:visited {
126
+ color: #ffffff !important;
127
+ }
128
+ table.large-button:hover td a {
129
+ color: #ffffff !important;
130
+ }
131
+ table.large-button:active td a {
132
+ color: #ffffff !important;
133
+ }
134
+ table.large-button td a:visited {
135
+ color: #ffffff !important;
136
+ }
137
+ table.secondary:hover td {
138
+ background: #d0d0d0 !important; color: #555;
139
+ }
140
+ table.secondary:hover td a {
141
+ color: #555 !important;
142
+ }
143
+ table.secondary td a:visited {
144
+ color: #555 !important;
145
+ }
146
+ table.secondary:active td a {
147
+ color: #555 !important;
148
+ }
149
+ table.success:hover td {
150
+ background: #457a1a !important;
151
+ }
152
+ table.alert:hover td {
153
+ background: #970b0e !important;
154
+ }
155
+ .button:hover table td {
156
+ background: #2795b6 !important;
157
+ }
158
+ .tiny-button:hover table td {
159
+ background: #2795b6 !important;
160
+ }
161
+ .small-button:hover table td {
162
+ background: #2795b6 !important;
163
+ }
164
+ .medium-button:hover table td {
165
+ background: #2795b6 !important;
166
+ }
167
+ .large-button:hover table td {
168
+ background: #2795b6 !important;
169
+ }
170
+ .button:hover {
171
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
172
+ }
173
+ .button:active {
174
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
175
+ }
176
+ .button:visited {
177
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
178
+ }
179
+ .tiny-button:hover {
180
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
181
+ }
182
+ .tiny-button:active {
183
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
184
+ }
185
+ .tiny-button:visited {
186
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
187
+ }
188
+ .small-button:hover {
189
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
190
+ }
191
+ .small-button:active {
192
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
193
+ }
194
+ .small-button:visited {
195
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
196
+ }
197
+ .medium-button:hover {
198
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
199
+ }
200
+ .medium-button:active {
201
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
202
+ }
203
+ .medium-button:visited {
204
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
205
+ }
206
+ .large-button:hover {
207
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
208
+ }
209
+ .large-button:active {
210
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
211
+ }
212
+ .large-button:visited {
213
+ color: #ffffff !important; font-family: Helvetica, Arial, sans-serif; text-decoration: none;
214
+ }
215
+ .secondary:hover table td {
216
+ background: #d0d0d0 !important;
217
+ }
218
+ .success:hover table td {
219
+ background: #457a1a !important;
220
+ }
221
+ .alert:hover table td {
222
+ background: #970b0e !important;
223
+ }
224
+ table.facebook:hover td {
225
+ background: #2d4473 !important;
226
+ }
227
+ table.twitter:hover td {
228
+ background: #0087bb !important;
229
+ }
230
+ table.google-plus:hover td {
231
+ background: #CC0000 !important;
232
+ }
233
+ @media only screen and (max-width: 600px) {
234
+ table[class="body"] img {
235
+ width: auto !important; height: auto !important;
236
+ }
237
+ table[class="body"] center {
238
+ min-width: 0 !important;
239
+ }
240
+ table[class="body"] .container {
241
+ width: 95% !important;
242
+ }
243
+ table[class="body"] .row {
244
+ width: 100% !important; display: block !important;
245
+ }
246
+ table[class="body"] .wrapper {
247
+ display: block !important; padding-right: 0 !important;
248
+ }
249
+ table[class="body"] .columns {
250
+ table-layout: fixed !important; float: none !important; width: 100% !important; padding-right: 0px !important; padding-left: 0px !important; display: block !important;
251
+ }
252
+ table[class="body"] .column {
253
+ table-layout: fixed !important; float: none !important; width: 100% !important; padding-right: 0px !important; padding-left: 0px !important; display: block !important;
254
+ }
255
+ table[class="body"] .wrapper.first .columns {
256
+ display: table !important;
257
+ }
258
+ table[class="body"] .wrapper.first .column {
259
+ display: table !important;
260
+ }
261
+ table[class="body"] table.columns td {
262
+ width: 100% !important;
263
+ }
264
+ table[class="body"] table.column td {
265
+ width: 100% !important;
266
+ }
267
+ table[class="body"] td.offset-by-one {
268
+ padding-left: 0 !important;
269
+ }
270
+ table[class="body"] td.offset-by-two {
271
+ padding-left: 0 !important;
272
+ }
273
+ table[class="body"] td.offset-by-three {
274
+ padding-left: 0 !important;
275
+ }
276
+ table[class="body"] td.offset-by-four {
277
+ padding-left: 0 !important;
278
+ }
279
+ table[class="body"] td.offset-by-five {
280
+ padding-left: 0 !important;
281
+ }
282
+ table[class="body"] td.offset-by-six {
283
+ padding-left: 0 !important;
284
+ }
285
+ table[class="body"] td.offset-by-seven {
286
+ padding-left: 0 !important;
287
+ }
288
+ table[class="body"] td.offset-by-eight {
289
+ padding-left: 0 !important;
290
+ }
291
+ table[class="body"] td.offset-by-nine {
292
+ padding-left: 0 !important;
293
+ }
294
+ table[class="body"] td.offset-by-ten {
295
+ padding-left: 0 !important;
296
+ }
297
+ table[class="body"] td.offset-by-eleven {
298
+ padding-left: 0 !important;
299
+ }
300
+ table[class="body"] .expander {
301
+ width: 9999px !important;
302
+ }
303
+ table[class="body"] .right-text-pad {
304
+ padding-left: 10px !important;
305
+ }
306
+ table[class="body"] .left-text-pad {
307
+ padding-right: 10px !important;
308
+ }
309
+ table[class="body"] .hide-for-small {
310
+ display: none !important;
311
+ }
312
+ table[class="body"] .show-for-desktop {
313
+ display: none !important;
314
+ }
315
+ table[class="body"] .show-for-small {
316
+ display: inherit !important;
317
+ }
318
+ table[class="body"] .hide-for-desktop {
319
+ display: inherit !important;
320
+ }
321
+ table[class="body"] .right-text-pad {
322
+ padding-left: 10px !important;
323
+ }
324
+ table[class="body"] .left-text-pad {
325
+ padding-right: 10px !important;
326
+ }
327
+ }
328
+ </style>
329
+ <table class="body" style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; height: 100%; width: 100%; padding: 0;"><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><td class="center" align="center" valign="top" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; padding: 0;">
330
+ <center style="width: 100%; min-width: 580px;">
331
+
332
+ <table class="row header" style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; background: #111111; padding: 0px;" bgcolor="#111111"><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><td class="center" align="center" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: center; padding: 0;" valign="top">
333
+ <center style="width: 100%; min-width: 580px;">
334
+
335
+ <table class="container" style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: inherit; width: 580px; margin: 0 auto; padding: 0;"><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><td class="wrapper last" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; position: relative; padding: 10px 0px 0px;" align="left" valign="top">
336
+
337
+ <table class="twelve columns" style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 580px; margin: 0 auto; padding: 0;"><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><td class="four sub-columns" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; width: 33.333333% !important; padding: 0px 3.448276% 10px 0px;" align="left" valign="top">
338
+ </td>
339
+ <td class="four sub-columns" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; width: 33.333333% !important; padding: 0px 3.448276% 10px 0px;" align="left" valign="top">
340
+ </td>
341
+ <td class="four sub-columns last" style="text-align: right; vertical-align: middle; word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; width: 33.333333% !important; padding: 0px 0px 10px;" align="right" valign="middle">
342
+ <a href="http://www.goodscout.io"><img src="https://dl.dropboxusercontent.com/u/26929591/email_logo.png" style="outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: auto; max-width: 100%; float: right; clear: both; display: block;" align="right" /></a></td>
343
+
344
+ </tr></table></td>
345
+ </tr></table></center>
346
+ </td>
347
+ </tr></table><table class="container" style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: inherit; width: 580px; margin: 0 auto; padding: 0;"><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; padding: 0;" align="left" valign="top">
348
+ <table class="row" style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: block; padding: 0px;"><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><td class="wrapper last" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; position: relative; padding: 10px 0px 0px;" align="left" valign="top">
349
+
350
+ <table class="twelve columns" style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 580px; margin: 0 auto; padding: 0;"><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><td style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; padding: 0px 0px 10px;" align="left" valign="top">
351
+ <!-- add yield below -->
352
+ <p style="color: #222222; display: block; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: left; line-height: 19px; font-size: 14px; margin: 0; padding: 0 0 10px;" align="left">Hi, </p>
353
+ <%= yield %>
354
+ </td>
355
+ <td class="expander" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; visibility: hidden; width: 0px; padding: 0;" align="left" valign="top"></td>
356
+ </tr></table></td>
357
+ </tr></table><table class="row callout" style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: block; padding: 0px;"><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><td class="wrapper last" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; position: relative; padding: 10px 0px 20px;" align="left" valign="top">
358
+
359
+ <table class="twelve columns" style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 580px; margin: 0 auto; padding: 0;"><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><p style="color: #222222; display: block; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: left; line-height: 19px; font-size: 14px; margin: 0; padding: 0 0 10px;" align="left">Thank you,</p>
360
+ <p style="color: #222222; display: block; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: left; line-height: 19px; font-size: 14px; margin: 0; padding: 0 0 10px;" align="left">Scout Squad</p>
361
+ </tr><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><td class="panel" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; background: #ECF8FF; padding: 10px; border: 1px solid #b9e5ff;" align="left" bgcolor="#ECF8FF" valign="top">
362
+ <p style="color: #222222; display: block; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: left; line-height: 19px; font-size: 14px; margin: 0; padding: 0 0 10px;" align="left">Here at goodscout, we have set up a Scout Squad dedicated to providing the best support for our customers. We take pride in our customer service and take your feedback very seriously. You can email us any questions or feedback you may have at <a href="mailto:scoutsquad@goodscout.io" style="color: #2ba6cb; text-decoration: none;">scoutsquad@goodscout.io.</a></p>
363
+ </td>
364
+ <td class="expander" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; visibility: hidden; width: 0px; padding: 0;" align="left" valign="top"></td>
365
+ </tr></table></td>
366
+ </tr></table><table class="row" style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 100%; position: relative; display: block; padding: 0px;"><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><td class="wrapper last" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; position: relative; padding: 10px 0px 0px;" align="left" valign="top">
367
+
368
+ <table class="twelve columns" style="border-spacing: 0; border-collapse: collapse; vertical-align: top; text-align: left; width: 580px; margin: 0 auto; padding: 0;"><tr style="vertical-align: top; text-align: left; padding: 0;" align="left"><td align="center" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; padding: 0px 0px 10px;" valign="top">
369
+ <center style="width: 100%; min-width: 580px;">
370
+ <p style="text-align: center; color: #222222; display: block; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding: 0 0 10px;" align="center"><a href="About Us" style="color: #2ba6cb; text-decoration: none;">About Us</a> | (512) 523-4972 | <a href="http://twitter.com/goodscoutapp" style="color: #2ba6cb; text-decoration: none;">@goodscoutapp</a> | Located in Austin, TX </p>
371
+ </center>
372
+ </td>
373
+ <td class="expander" style="word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; vertical-align: top; text-align: left; visibility: hidden; width: 0px; padding: 0;" align="left" valign="top"></td>
374
+ </tr></table></td>
375
+ </tr></table></td>
376
+ </tr></table><!-- container end above --></center>
377
+ </td>
378
+ </tr></table></body>
379
+ </html>