send_grid_mailer 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/.rspec +3 -0
  4. data/.ruby-version +1 -0
  5. data/CHANGELOG.md +7 -0
  6. data/Gemfile +15 -0
  7. data/Gemfile.lock +192 -0
  8. data/Guardfile +15 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +209 -0
  11. data/Rakefile +10 -0
  12. data/lib/send_grid_mailer.rb +27 -0
  13. data/lib/send_grid_mailer/definition.rb +110 -0
  14. data/lib/send_grid_mailer/deliverer.rb +46 -0
  15. data/lib/send_grid_mailer/engine.rb +23 -0
  16. data/lib/send_grid_mailer/errors.rb +2 -0
  17. data/lib/send_grid_mailer/logger.rb +99 -0
  18. data/lib/send_grid_mailer/mail_message_ext.rb +7 -0
  19. data/lib/send_grid_mailer/mailer_base_ext.rb +88 -0
  20. data/lib/send_grid_mailer/version.rb +3 -0
  21. data/lib/tasks/send_grid_mailer_tasks.rake +4 -0
  22. data/send_grid_mailer.gemspec +31 -0
  23. data/spec/dummy/README.rdoc +28 -0
  24. data/spec/dummy/Rakefile +6 -0
  25. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  26. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  27. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  28. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  29. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  30. data/spec/dummy/app/mailers/test_mailer.rb +86 -0
  31. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/spec/dummy/app/views/layouts/mailer.html.erb +5 -0
  33. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  34. data/spec/dummy/app/views/test_mailer/rails_tpl_email.html.erb +1 -0
  35. data/spec/dummy/bin/bundle +3 -0
  36. data/spec/dummy/bin/rails +4 -0
  37. data/spec/dummy/bin/rake +4 -0
  38. data/spec/dummy/bin/setup +29 -0
  39. data/spec/dummy/config.ru +4 -0
  40. data/spec/dummy/config/application.rb +32 -0
  41. data/spec/dummy/config/boot.rb +5 -0
  42. data/spec/dummy/config/database.yml +25 -0
  43. data/spec/dummy/config/environment.rb +5 -0
  44. data/spec/dummy/config/environments/development.rb +46 -0
  45. data/spec/dummy/config/environments/production.rb +79 -0
  46. data/spec/dummy/config/environments/test.rb +42 -0
  47. data/spec/dummy/config/initializers/assets.rb +11 -0
  48. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  49. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  50. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  51. data/spec/dummy/config/initializers/inflections.rb +16 -0
  52. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  53. data/spec/dummy/config/initializers/session_store.rb +3 -0
  54. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  55. data/spec/dummy/config/locales/en.yml +23 -0
  56. data/spec/dummy/config/routes.rb +56 -0
  57. data/spec/dummy/config/secrets.yml +22 -0
  58. data/spec/dummy/db/development.sqlite3 +0 -0
  59. data/spec/dummy/db/schema.rb +16 -0
  60. data/spec/dummy/db/test.sqlite3 +0 -0
  61. data/spec/dummy/log/development.log +1984 -0
  62. data/spec/dummy/log/test.log +58252 -0
  63. data/spec/dummy/public/404.html +67 -0
  64. data/spec/dummy/public/422.html +67 -0
  65. data/spec/dummy/public/500.html +66 -0
  66. data/spec/dummy/public/favicon.ico +0 -0
  67. data/spec/dummy/spec/assets/image.png +0 -0
  68. data/spec/dummy/spec/assets/video.mp4 +0 -0
  69. data/spec/dummy/spec/lib/send_grid_mailer/definition_spec.rb +102 -0
  70. data/spec/dummy/spec/mailers/test_mailer_spec.rb +423 -0
  71. data/spec/dummy/spec/support/test_helpers.rb +5 -0
  72. data/spec/rails_helper.rb +28 -0
  73. data/spec/spec_helper.rb +9 -0
  74. metadata +313 -0
@@ -0,0 +1,42 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: cbe852cea02deaf75409d502746a62f8df2978e031119e2e464cb43ef9e6cd59d9cfdddedda3a05a2bb8b86f61bf79d24e65b6f3514d4c1343dbb1935251f8e4
15
+
16
+ test:
17
+ secret_key_base: 5119a7f201842cd4bd31a735702146c23bd502088bccf9f3dd51e6e23a5615c1918d1b5b7df92d8e894b408198ca291eb57b4e1de7944f11254fa4800671c81f
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
Binary file
@@ -0,0 +1,16 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 0) do
15
+
16
+ end
Binary file
@@ -0,0 +1,1984 @@
1
+
2
+ TestMailer#test_email: processed outbound mail in 10.9ms
3
+
4
+ TestMailer#test_email: processed outbound mail in 10.0ms
5
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.5ms)
6
+
7
+ TestMailer#test_email: processed outbound mail in 185.9ms
8
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.4ms)
9
+
10
+ TestMailer#test_email: processed outbound mail in 192.4ms
11
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.0ms)
12
+
13
+ TestMailer#test_email: processed outbound mail in 168.4ms
14
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (0.6ms)
15
+
16
+ TestMailer#test_email: processed outbound mail in 35.8ms
17
+
18
+ TestMailer#test_email: processed outbound mail in 0.5ms
19
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (0.1ms)
20
+
21
+ TestMailer#test_email: processed outbound mail in 15.6ms
22
+
23
+ TestMailer#test_email: processed outbound mail in 10.6ms
24
+
25
+ TestMailer#test_email: processed outbound mail in 10.9ms
26
+
27
+ TestMailer#test_email: processed outbound mail in 179.4ms
28
+
29
+ TestMailer#test_email: processed outbound mail in 1.2ms
30
+
31
+ TestMailer#test_email: processed outbound mail in 1.1ms
32
+
33
+ TestMailer#test_email: processed outbound mail in 180.7ms
34
+
35
+ TestMailer#test_email: processed outbound mail in 168.3ms
36
+
37
+ TestMailer#test_email: processed outbound mail in 163.6ms
38
+
39
+ TestMailer#test_email: processed outbound mail in 0.9ms
40
+
41
+ TestMailer#test_email: processed outbound mail in 181.2ms
42
+
43
+ TestMailer#test_email: processed outbound mail in 154.4ms
44
+
45
+ TestMailer#test_email: processed outbound mail in 170.5ms
46
+
47
+ TestMailer#test_email: processed outbound mail in 160.1ms
48
+
49
+ TestMailer#test_email: processed outbound mail in 154.9ms
50
+
51
+ TestMailer#test_email: processed outbound mail in 143.0ms
52
+
53
+ TestMailer#test_email: processed outbound mail in 150.5ms
54
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
55
+  (0.4ms) select sqlite_version(*)
56
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
57
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
58
+
59
+ TestMailer#test_email: processed outbound mail in 213.6ms
60
+
61
+ TestMailer#test_email: processed outbound mail in 148.5ms
62
+
63
+ TestMailer#test_email: processed outbound mail in 170.4ms
64
+
65
+ TestMailer#test_email: processed outbound mail in 158.3ms
66
+
67
+ TestMailer#test_email: processed outbound mail in 169.5ms
68
+
69
+ TestMailer#test_email: processed outbound mail in 148.6ms
70
+
71
+ TestMailer#test_email: processed outbound mail in 146.5ms
72
+
73
+ TestMailer#test_email: processed outbound mail in 163.3ms
74
+
75
+ TestMailer#test_email: processed outbound mail in 142.2ms
76
+
77
+ TestMailer#test_email: processed outbound mail in 173.6ms
78
+
79
+ TestMailer#test_email: processed outbound mail in 172.1ms
80
+
81
+ TestMailer#test_email: processed outbound mail in 164.6ms
82
+
83
+ TestMailer#test_email: processed outbound mail in 172.0ms
84
+
85
+ TestMailer#test_email: processed outbound mail in 185.1ms
86
+
87
+ TestMailer#test_email: processed outbound mail in 178.6ms
88
+
89
+ TestMailer#test_email: processed outbound mail in 172.5ms
90
+
91
+ TestMailer#test_email: processed outbound mail in 129.0ms
92
+
93
+ TestMailer#test_email: processed outbound mail in 166.2ms
94
+
95
+ TestMailer#test_email: processed outbound mail in 138.4ms
96
+
97
+ TestMailer#test_email: processed outbound mail in 166.7ms
98
+
99
+ TestMailer#test_email: processed outbound mail in 149.4ms
100
+
101
+ TestMailer#test_email: processed outbound mail in 152.5ms
102
+
103
+ TestMailer#test_email: processed outbound mail in 126.7ms
104
+
105
+ TestMailer#test_email: processed outbound mail in 2.8ms
106
+
107
+ TestMailer#test_email: processed outbound mail in 2.2ms
108
+
109
+ TestMailer#test_email: processed outbound mail in 2.4ms
110
+
111
+ TestMailer#test_email: processed outbound mail in 172.6ms
112
+
113
+ TestMailer#test_email: processed outbound mail in 168.7ms
114
+
115
+ TestMailer#test_email: processed outbound mail in 148.6ms
116
+
117
+ TestMailer#test_email: processed outbound mail in 170.5ms
118
+
119
+ TestMailer#test_email: processed outbound mail in 167.2ms
120
+
121
+ TestMailer#test_email: processed outbound mail in 183.7ms
122
+
123
+ TestMailer#test_email: processed outbound mail in 175.9ms
124
+
125
+ TestMailer#test_email: processed outbound mail in 169.6ms
126
+
127
+ TestMailer#test_email: processed outbound mail in 185.1ms
128
+
129
+ TestMailer#test_email: processed outbound mail in 151.1ms
130
+
131
+ TestMailer#test_email: processed outbound mail in 140.0ms
132
+
133
+ TestMailer#test_email: processed outbound mail in 2.1ms
134
+
135
+ TestMailer#test_email: processed outbound mail in 168.3ms
136
+
137
+ TestMailer#test_email: processed outbound mail in 153.6ms
138
+
139
+ TestMailer#test_email: processed outbound mail in 142.6ms
140
+
141
+ TestMailer#test_email: processed outbound mail in 145.9ms
142
+
143
+ TestMailer#test_email: processed outbound mail in 118.4ms
144
+
145
+ TestMailer#test_email: processed outbound mail in 137.9ms
146
+
147
+ TestMailer#test_email: processed outbound mail in 151.0ms
148
+
149
+ TestMailer#test_email: processed outbound mail in 146.6ms
150
+
151
+ TestMailer#test_email: processed outbound mail in 141.9ms
152
+
153
+ TestMailer#test_email: processed outbound mail in 141.1ms
154
+
155
+ TestMailer#test_email: processed outbound mail in 143.1ms
156
+
157
+ TestMailer#test_email: processed outbound mail in 165.3ms
158
+
159
+ TestMailer#test_email: processed outbound mail in 150.3ms
160
+
161
+ TestMailer#test_email: processed outbound mail in 2.2ms
162
+
163
+ TestMailer#test_email: processed outbound mail in 116.8ms
164
+
165
+ TestMailer#test_email: processed outbound mail in 148.2ms
166
+
167
+ TestMailer#test_email: processed outbound mail in 144.0ms
168
+
169
+ TestMailer#test_email: processed outbound mail in 136.1ms
170
+
171
+ TestMailer#test_email: processed outbound mail in 121.8ms
172
+
173
+ TestMailer#test_email: processed outbound mail in 148.6ms
174
+
175
+ TestMailer#test_email: processed outbound mail in 141.7ms
176
+
177
+ TestMailer#test_email: processed outbound mail in 151.6ms
178
+
179
+ TestMailer#test_email: processed outbound mail in 128.9ms
180
+
181
+ TestMailer#test_email: processed outbound mail in 144.0ms
182
+
183
+ TestMailer#test_email: processed outbound mail in 1104.5ms
184
+
185
+ TestMailer#test_email: processed outbound mail in 159.0ms
186
+
187
+ TestMailer#test_email: processed outbound mail in 148.4ms
188
+
189
+ TestMailer#test_email: processed outbound mail in 134.6ms
190
+
191
+ TestMailer#test_email: processed outbound mail in 154.5ms
192
+
193
+ TestMailer#test_email: processed outbound mail in 148.8ms
194
+
195
+ TestMailer#test_email: processed outbound mail in 149.4ms
196
+
197
+ TestMailer#test_email: processed outbound mail in 118.3ms
198
+
199
+ TestMailer#test_email: processed outbound mail in 141.1ms
200
+
201
+ TestMailer#test_email: processed outbound mail in 145.8ms
202
+
203
+ TestMailer#test_email: processed outbound mail in 145.8ms
204
+
205
+ TestMailer#test_email: processed outbound mail in 145.0ms
206
+
207
+ TestMailer#test_email: processed outbound mail in 166.5ms
208
+
209
+ TestMailer#test_email: processed outbound mail in 136.8ms
210
+
211
+ TestMailer#test_email: processed outbound mail in 144.9ms
212
+
213
+ TestMailer#test_email: processed outbound mail in 120.6ms
214
+
215
+ TestMailer#test_email: processed outbound mail in 135.8ms
216
+
217
+ TestMailer#test_email: processed outbound mail in 139.4ms
218
+
219
+ TestMailer#test_email: processed outbound mail in 144.2ms
220
+
221
+ TestMailer#test_email: processed outbound mail in 146.7ms
222
+
223
+ TestMailer#test_email: processed outbound mail in 148.5ms
224
+
225
+ TestMailer#test_email: processed outbound mail in 147.2ms
226
+
227
+ TestMailer#test_email: processed outbound mail in 180.8ms
228
+
229
+ TestMailer#test_email: processed outbound mail in 126.7ms
230
+
231
+ TestMailer#test_email: processed outbound mail in 141.8ms
232
+
233
+ TestMailer#test_email: processed outbound mail in 157.0ms
234
+
235
+ TestMailer#test_email: processed outbound mail in 156.8ms
236
+
237
+ TestMailer#test_email: processed outbound mail in 161.7ms
238
+
239
+ TestMailer#test_email: processed outbound mail in 151.4ms
240
+
241
+ TestMailer#test_email: processed outbound mail in 148.2ms
242
+
243
+ TestMailer#test_email: processed outbound mail in 147.5ms
244
+
245
+ TestMailer#test_email: processed outbound mail in 157.8ms
246
+
247
+ TestMailer#test_email: processed outbound mail in 146.5ms
248
+
249
+ TestMailer#test_email: processed outbound mail in 150.1ms
250
+
251
+ TestMailer#test_email: processed outbound mail in 159.2ms
252
+
253
+ TestMailer#test_email: processed outbound mail in 139.7ms
254
+
255
+ TestMailer#test_email: processed outbound mail in 160.0ms
256
+
257
+ TestMailer#test_email: processed outbound mail in 158.8ms
258
+
259
+ TestMailer#test_email: processed outbound mail in 151.7ms
260
+
261
+ TestMailer#test_email: processed outbound mail in 122.2ms
262
+
263
+ TestMailer#test_email: processed outbound mail in 138.2ms
264
+
265
+ TestMailer#test_email: processed outbound mail in 125.4ms
266
+
267
+ TestMailer#test_email: processed outbound mail in 158.2ms
268
+
269
+ TestMailer#test_email: processed outbound mail in 156.4ms
270
+
271
+ TestMailer#test_email: processed outbound mail in 143.9ms
272
+
273
+ TestMailer#test_email: processed outbound mail in 124.3ms
274
+
275
+ TestMailer#test_email: processed outbound mail in 168.7ms
276
+
277
+ TestMailer#test_email: processed outbound mail in 139.9ms
278
+
279
+ TestMailer#test_email: processed outbound mail in 174.2ms
280
+
281
+ TestMailer#test_email: processed outbound mail in 1.3ms
282
+
283
+ TestMailer#test_email: processed outbound mail in 155.5ms
284
+
285
+ TestMailer#test_email: processed outbound mail in 167.4ms
286
+
287
+ TestMailer#test_email: processed outbound mail in 172.8ms
288
+
289
+ TestMailer#test_email: processed outbound mail in 141.7ms
290
+
291
+ TestMailer#test_email: processed outbound mail in 167.4ms
292
+
293
+ TestMailer#test_email: processed outbound mail in 138.5ms
294
+
295
+ TestMailer#test_email: processed outbound mail in 143.5ms
296
+
297
+ TestMailer#test_email: processed outbound mail in 2.8ms
298
+
299
+ TestMailer#test_email: processed outbound mail in 167.9ms
300
+
301
+ TestMailer#test_email: processed outbound mail in 142.0ms
302
+
303
+ TestMailer#test_email: processed outbound mail in 19.2ms
304
+
305
+ TestMailer#test_email: processed outbound mail in 164.8ms
306
+
307
+ TestMailer#test_email: processed outbound mail in 165.1ms
308
+
309
+ TestMailer#test_email: processed outbound mail in 3.9ms
310
+
311
+ TestMailer#test_email: processed outbound mail in 166.7ms
312
+
313
+ TestMailer#test_email: processed outbound mail in 142.5ms
314
+
315
+ TestMailer#test_email: processed outbound mail in 171.1ms
316
+
317
+ TestMailer#test_email: processed outbound mail in 169.2ms
318
+
319
+ TestMailer#test_email: processed outbound mail in 173.1ms
320
+
321
+ TestMailer#test_email: processed outbound mail in 144.1ms
322
+
323
+ TestMailer#test_email: processed outbound mail in 146.8ms
324
+
325
+ TestMailer#test_email: processed outbound mail in 2.5ms
326
+
327
+ TestMailer#test_email: processed outbound mail in 148.4ms
328
+
329
+ TestMailer#test_email: processed outbound mail in 139.4ms
330
+
331
+ TestMailer#test_email: processed outbound mail in 3.0ms
332
+
333
+ TestMailer#test_email: processed outbound mail in 168.9ms
334
+
335
+ TestMailer#test_email: processed outbound mail in 152.7ms
336
+
337
+ TestMailer#test_email: processed outbound mail in 145.0ms
338
+
339
+ TestMailer#test_email: processed outbound mail in 113.6ms
340
+
341
+ TestMailer#test_email: processed outbound mail in 143.6ms
342
+
343
+ TestMailer#test_email: processed outbound mail in 171.3ms
344
+
345
+ TestMailer#test_email: processed outbound mail in 137.9ms
346
+
347
+ TestMailer#test_email: processed outbound mail in 163.2ms
348
+
349
+ TestMailer#test_email: processed outbound mail in 135.1ms
350
+
351
+ TestMailer#test_email: processed outbound mail in 2.3ms
352
+
353
+ TestMailer#test_email: processed outbound mail in 162.5ms
354
+
355
+ TestMailer#test_email: processed outbound mail in 160.9ms
356
+
357
+ TestMailer#test_email: processed outbound mail in 159.4ms
358
+
359
+ TestMailer#test_email: processed outbound mail in 146.6ms
360
+
361
+ TestMailer#test_email: processed outbound mail in 158.0ms
362
+
363
+ TestMailer#test_email: processed outbound mail in 19.7ms
364
+
365
+ TestMailer#test_email: processed outbound mail in 159.1ms
366
+
367
+ TestMailer#test_email: processed outbound mail in 164.0ms
368
+
369
+ TestMailer#test_email: processed outbound mail in 170.6ms
370
+
371
+ TestMailer#test_email: processed outbound mail in 170.4ms
372
+
373
+ TestMailer#test_email: processed outbound mail in 162.1ms
374
+
375
+ TestMailer#test_email: processed outbound mail in 162.1ms
376
+
377
+ TestMailer#test_email: processed outbound mail in 156.4ms
378
+
379
+ TestMailer#test_email: processed outbound mail in 140.6ms
380
+
381
+ TestMailer#test_email: processed outbound mail in 166.0ms
382
+
383
+ TestMailer#test_email: processed outbound mail in 162.9ms
384
+
385
+ TestMailer#test_email: processed outbound mail in 171.0ms
386
+
387
+ TestMailer#test_email: processed outbound mail in 169.5ms
388
+
389
+ TestMailer#test_email: processed outbound mail in 165.0ms
390
+
391
+ TestMailer#test_email: processed outbound mail in 163.7ms
392
+
393
+ TestMailer#test_email: processed outbound mail in 141.8ms
394
+
395
+ TestMailer#test_email: processed outbound mail in 175.6ms
396
+
397
+ TestMailer#test_email: processed outbound mail in 154.4ms
398
+
399
+ TestMailer#test_email: processed outbound mail in 157.4ms
400
+
401
+ TestMailer#test_email: processed outbound mail in 1.6ms
402
+
403
+ TestMailer#test_email: processed outbound mail in 153.3ms
404
+
405
+ TestMailer#test_email: processed outbound mail in 150.5ms
406
+
407
+ TestMailer#test_email: processed outbound mail in 157.2ms
408
+
409
+ TestMailer#test_email: processed outbound mail in 143.9ms
410
+
411
+ TestMailer#test_email: processed outbound mail in 166.5ms
412
+
413
+ TestMailer#test_email: processed outbound mail in 126.1ms
414
+
415
+ TestMailer#test_email: processed outbound mail in 2.4ms
416
+
417
+ TestMailer#test_email: processed outbound mail in 140.2ms
418
+
419
+ TestMailer#test_email: processed outbound mail in 1.5ms
420
+
421
+ TestMailer#test_email: processed outbound mail in 160.1ms
422
+
423
+ TestMailer#test_email: processed outbound mail in 133.9ms
424
+
425
+ TestMailer#test_email: processed outbound mail in 135.9ms
426
+
427
+ TestMailer#test_email: processed outbound mail in 153.0ms
428
+
429
+ TestMailer#test_email: processed outbound mail in 162.4ms
430
+
431
+ TestMailer#test_email: processed outbound mail in 155.9ms
432
+
433
+ TestMailer#test_email: processed outbound mail in 169.4ms
434
+
435
+ TestMailer#test_email: processed outbound mail in 155.5ms
436
+
437
+ TestMailer#test_email: processed outbound mail in 172.2ms
438
+
439
+ TestMailer#test_email: processed outbound mail in 171.4ms
440
+
441
+ TestMailer#test_email: processed outbound mail in 169.0ms
442
+
443
+ TestMailer#test_email: processed outbound mail in 0.9ms
444
+
445
+ TestMailer#test_email: processed outbound mail in 182.4ms
446
+
447
+ TestMailer#test_email: processed outbound mail in 155.3ms
448
+
449
+ TestMailer#test_email: processed outbound mail in 0.7ms
450
+
451
+ TestMailer#test_email: processed outbound mail in 0.9ms
452
+
453
+ TestMailer#test_email: processed outbound mail in 0.9ms
454
+
455
+ TestMailer#test_email: processed outbound mail in 0.8ms
456
+
457
+ TestMailer#test_email: processed outbound mail in 2.8ms
458
+
459
+ TestMailer#test_email: processed outbound mail in 6.7ms
460
+
461
+ TestMailer#test_email: processed outbound mail in 0.9ms
462
+
463
+ TestMailer#test_email: processed outbound mail in 3.3ms
464
+
465
+ TestMailer#test_email: processed outbound mail in 2.6ms
466
+
467
+ TestMailer#test_email: processed outbound mail in 2.0ms
468
+
469
+ TestMailer#test_email: processed outbound mail in 2.2ms
470
+
471
+ TestMailer#test_email: processed outbound mail in 1.8ms
472
+
473
+ TestMailer#test_email: processed outbound mail in 1.8ms
474
+
475
+ TestMailer#test_email: processed outbound mail in 17.1ms
476
+
477
+ TestMailer#test_email: processed outbound mail in 6.2ms
478
+
479
+ TestMailer#test_email: processed outbound mail in 7.4ms
480
+
481
+ TestMailer#test_email: processed outbound mail in 6.5ms
482
+
483
+ TestMailer#test_email: processed outbound mail in 2.1ms
484
+
485
+ TestMailer#test_email: processed outbound mail in 1.0ms
486
+
487
+ TestMailer#test_email: processed outbound mail in 4.9ms
488
+
489
+ TestMailer#test_email: processed outbound mail in 2.0ms
490
+
491
+ TestMailer#test_email: processed outbound mail in 2.0ms
492
+
493
+ TestMailer#test_email: processed outbound mail in 4.4ms
494
+
495
+ TestMailer#test_email: processed outbound mail in 1.4ms
496
+
497
+ TestMailer#test_email: processed outbound mail in 1.8ms
498
+
499
+ TestMailer#test_email: processed outbound mail in 1.7ms
500
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.7ms)
501
+
502
+ TestMailer#test_email: processed outbound mail in 30.2ms
503
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.6ms)
504
+
505
+ TestMailer#test_email: processed outbound mail in 40.8ms
506
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (2.0ms)
507
+
508
+ TestMailer#test_email: processed outbound mail in 38.6ms
509
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (3.4ms)
510
+
511
+ TestMailer#test_email: processed outbound mail in 35.3ms
512
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (2.1ms)
513
+
514
+ TestMailer#test_email: processed outbound mail in 35.5ms
515
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.9ms)
516
+
517
+ TestMailer#test_email: processed outbound mail in 36.1ms
518
+ Status code: 202
519
+ Headers: {"server"=>["nginx"], "date"=>["Tue, 27 Sep 2016 16:13:44 GMT"], "content-type"=>["text/plain; charset=utf-8"], "content-length"=>["0"], "connection"=>["close"], "x-message-id"=>["C1p40kayTnW2hQ5r0TRTIg"], "x-frame-options"=>["DENY"]}
520
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.6ms)
521
+
522
+ TestMailer#test_email: processed outbound mail in 32.3ms
523
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.9ms)
524
+
525
+ TestMailer#test_email: processed outbound mail in 37.5ms
526
+ Request body: {"from"=>{"email"=>"from@example.com"}, "personalizations"=>[{"to"=>[{"email"=>"leandro@platan.us"}], "subject"=>"Test email", "headers"=>{"HEADER-0"=>"{\"category\":\"Drip Email\"}"}, "substitutions"=>{"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}}], "content"=>[{"type"=>"text/html", "value"=>"<html>\n <body>\n <h1>Me llamo leandro y leo desde template</h1>\n\n </body>\n</html>\n"}]}
527
+ Status code: 202
528
+ Headers: {"server"=>["nginx"], "date"=>["Tue, 27 Sep 2016 16:15:02 GMT"], "content-type"=>["text/plain; charset=utf-8"], "content-length"=>["0"], "connection"=>["close"], "x-message-id"=>["vkzwHza_SKiSOdKsaBIh4g"], "x-frame-options"=>["DENY"]}
529
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (2.9ms)
530
+
531
+ TestMailer#test_email: processed outbound mail in 36.5ms
532
+ hola
533
+ chaudeu
534
+ Status code: 202
535
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (2.0ms)
536
+
537
+ TestMailer#test_email: processed outbound mail in 31.1ms
538
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.7ms)
539
+
540
+ TestMailer#test_email: processed outbound mail in 29.6ms
541
+ From
542
+ To
543
+ Status code: 202
544
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (6.7ms)
545
+
546
+ TestMailer#test_email: processed outbound mail in 37.2ms
547
+ From
548
+ To
549
+ Status code: 202
550
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.2ms)
551
+
552
+ TestMailer#test_email: processed outbound mail in 30.9ms
553
+ From
554
+ To
555
+ Status code: 202
556
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.7ms)
557
+
558
+ TestMailer#test_email: processed outbound mail in 33.2ms
559
+ From
560
+ To
561
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.7ms)
562
+
563
+ TestMailer#test_email: processed outbound mail in 33.9ms
564
+ From
565
+ To
566
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.2ms)
567
+
568
+ TestMailer#test_email: processed outbound mail in 31.5ms
569
+ From: {"email"=>"from@example.com"}
570
+ To: [{"email"=>"leandro@platan.us"}]
571
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.7ms)
572
+
573
+ TestMailer#test_email: processed outbound mail in 28.1ms
574
+ from: {"email"=>"from@example.com"}
575
+ to: [{"email"=>"leandro@platan.us"}]
576
+ cc:
577
+ bcc:
578
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (4.3ms)
579
+
580
+ TestMailer#test_email: processed outbound mail in 37.9ms
581
+ from: {"email"=>"from@example.com"}
582
+ to: [{"email"=>"leandro@platan.us"}]
583
+ cc:
584
+ bcc:
585
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.5ms)
586
+
587
+ TestMailer#test_email: processed outbound mail in 26.5ms
588
+ from: {"email"=>"from@example.com"}
589
+ to: [{"email"=>"leandro@platan.us"}]
590
+ cc:
591
+ bcc:
592
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.6ms)
593
+
594
+ TestMailer#test_email: processed outbound mail in 33.4ms
595
+ from: {"email"=>"from@example.com"}
596
+ to: [{"email"=>"leandro@platan.us"}]
597
+ cc: -
598
+ bcc: -
599
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.8ms)
600
+
601
+ TestMailer#test_email: processed outbound mail in 32.8ms
602
+ from: {"email"=>"from@example.com"}
603
+ to: [{"email"=>"leandro@platan.us"}]
604
+ cc: -
605
+ bcc: -
606
+ subject: Test email
607
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (3.6ms)
608
+
609
+ TestMailer#test_email: processed outbound mail in 36.5ms
610
+ From: {"email"=>"from@example.com"}
611
+ To: [{"email"=>"leandro@platan.us"}]
612
+ Cc: -
613
+ Bcc: -
614
+ Subject: Test email
615
+ Template ID: -
616
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
617
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (2.2ms)
618
+
619
+ TestMailer#test_email: processed outbound mail in 29.1ms
620
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.7ms)
621
+
622
+ TestMailer#test_email: processed outbound mail in 38.4ms
623
+ From: {"email"=>"from@example.com"}
624
+ To: [{"email"=>"leandro@platan.us"}]
625
+ Cc: -
626
+ Bcc: -
627
+ Subject: Test email
628
+ Template ID: -
629
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
630
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
631
+ Contents: [{"type"=>"text/html", "value"=>"<html>\n <body>\n <h1>Me llamo leandro y leo desde template</h1>\n\n </body>\n</html>\n"}]
632
+ Attachments: -
633
+
634
+ TestMailer#test_email: processed outbound mail in 180.6ms
635
+
636
+ TestMailer#test_email: processed outbound mail in 159.8ms
637
+ From: {"email"=>"contacto@platan.us"}
638
+ To: [{"email"=>"leandro@platan.us"}]
639
+ Cc: -
640
+ Bcc: -
641
+ Subject: Test email
642
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
643
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
644
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
645
+ Contents: -
646
+ Attachments: ["nana.png", "nana.pdf"]
647
+
648
+ TestMailer#test_email: processed outbound mail in 152.2ms
649
+
650
+ TestMailer#test_email: processed outbound mail in 162.5ms
651
+ From: {"email"=>"contacto@platan.us"}
652
+ To: [{"email"=>"leandro@platan.us"}]
653
+ Cc: -
654
+ Bcc: -
655
+ Subject: Test email
656
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
657
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
658
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
659
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
660
+ Attachments: ["nana.png", "nana.pdf"]
661
+
662
+ TestMailer#test_email: processed outbound mail in 160.1ms
663
+ From: {"email"=>"contacto@platan.us"}
664
+ To: [{"email"=>"leandro@platan.us"}]
665
+ Cc: [{"email"=>"me@platan.us"}]
666
+ Bcc: -
667
+ Subject: Test email
668
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
669
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
670
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
671
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
672
+ Attachments: ["nana.png", "nana.pdf"]
673
+
674
+ TestMailer#test_email: processed outbound mail in 184.4ms
675
+
676
+ TestMailer#test_email: processed outbound mail in 185.7ms
677
+ From: {"email"=>"contacto@platan.us"}
678
+ To: [{"email"=>"leandro@platan.us"}]
679
+ Cc: [{"email"=>"me@platan.us"}]
680
+ Bcc: [{"email"=>"aa@platan.us"}]
681
+ Subject: Test email
682
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
683
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
684
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
685
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
686
+ Attachments: ["nana.png", "nana.pdf"]
687
+
688
+ TestMailer#test_email: processed outbound mail in 186.8ms
689
+ From: {"email"=>"contacto@platan.us"}
690
+ To: [{"email"=>"leandro@platan.us"}]
691
+ Cc: [{"email"=>"me@platan.us"}]
692
+ Bcc: [{"email"=>"aa@platan.us"}]
693
+ Subject: Test email
694
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
695
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
696
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
697
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
698
+ Attachments: ["nana.png", "nana.pdf"]
699
+ Status code: 202
700
+
701
+ TestMailer#test_email: processed outbound mail in 183.1ms
702
+ From: {"email"=>"contacto@platan.us"}
703
+ To: [{"email"=>"leandro@platan.us"}]
704
+ Cc: [{"email"=>"me@platan.us"}]
705
+ Bcc: [{"email"=>"aa@platan.us"}]
706
+ Subject: Test email
707
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
708
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
709
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
710
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
711
+ Attachments: ["nana.png", "nana.pdf"]
712
+ Status code: 202
713
+
714
+ TestMailer#test_email: processed outbound mail in 181.7ms
715
+ From: {"email"=>"contacto@platan.us"}
716
+ To: [{"email"=>"leandro@platan.us"}]
717
+ Cc: [{"email"=>"me@platan.us"}]
718
+ Bcc: [{"email"=>"aa@platan.us"}]
719
+ Subject: Test email
720
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
721
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
722
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
723
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
724
+ Attachments: ["nana.png", "nana.pdf"]
725
+ Status code: 202
726
+
727
+ TestMailer#test_email: processed outbound mail in 173.1ms
728
+ From: {"email"=>"contacto@platan.us"}
729
+ To: [{"email"=>"leandro@platan.us"}]
730
+ Cc: [{"email"=>"me@platan.us"}]
731
+ Bcc: [{"email"=>"aa@platan.us"}]
732
+ Subject: Test email
733
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
734
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
735
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
736
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
737
+ Attachments: ["nana.png", "nana.pdf"]
738
+ Status code: 202
739
+
740
+ TestMailer#test_email: processed outbound mail in 180.6ms
741
+
742
+ TestMailer#test_email: processed outbound mail in 152.1ms
743
+
744
+ TestMailer#test_email: processed outbound mail in 181.0ms
745
+
746
+ TestMailer#test_email: processed outbound mail in 186.0ms
747
+
748
+ TestMailer#test_email: processed outbound mail in 171.7ms
749
+
750
+ TestMailer#test_email: processed outbound mail in 139.0ms
751
+
752
+ TestMailer#test_email: processed outbound mail in 155.2ms
753
+ From: {"email"=>"contacto@platan.us"}
754
+ To: [{"email"=>"leandro@platan.us"}]
755
+ Cc: [{"email"=>"me@platan.us"}]
756
+ Bcc: [{"email"=>"aa@platan.us"}]
757
+ Subject: Test email
758
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
759
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
760
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
761
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
762
+ Attachments: ["nana.png", "nana.pdf"]
763
+ Status code: 202
764
+
765
+ TestMailer#test_email: processed outbound mail in 153.9ms
766
+ From: {"email"=>"contacto@platan.us"}
767
+ To: [{"email"=>"leandro@platan.us"}]
768
+ Cc: [{"email"=>"me@platan.us"}]
769
+ Bcc: [{"email"=>"aa@platan.us"}]
770
+ Subject: Test email
771
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
772
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
773
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
774
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
775
+ Attachments: ["nana.png", "nana.pdf"]
776
+ Status code: 202
777
+
778
+ TestMailer#test_email: processed outbound mail in 187.1ms
779
+
780
+ TestMailer#test_email: processed outbound mail in 146.5ms
781
+
782
+ TestMailer#test_email: processed outbound mail in 154.3ms
783
+
784
+ TestMailer#test_email: processed outbound mail in 147.5ms
785
+ From: {"email"=>"contacto@platan.us"}
786
+ To: [{"email"=>"leandro@platan.us"}]
787
+ Cc: [{"email"=>"me@platan.us"}]
788
+ Bcc: [{"email"=>"aa@platan.us"}]
789
+ Subject: Test email
790
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
791
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
792
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
793
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
794
+ Attachments: ["nana.png", "nana.pdf"]
795
+
796
+ TestMailer#test_email: processed outbound mail in 166.8ms
797
+ From: {"email"=>"contacto@platan.us"}
798
+ To: [{"email"=>"leandro@platan.us"}]
799
+ Cc: [{"email"=>"me@platan.us"}]
800
+ Bcc: [{"email"=>"aa@platan.us"}]
801
+ Subject: Test email
802
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
803
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
804
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
805
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
806
+ Attachments: nana.png, nana.pdf
807
+
808
+ TestMailer#test_email: processed outbound mail in 155.7ms
809
+ Subject: Test email
810
+ From: {"email"=>"contacto@platan.us"}
811
+ To: [{"email"=>"leandro@platan.us"}]
812
+ Cc: [{"email"=>"me@platan.us"}]
813
+ Bcc: [{"email"=>"aa@platan.us"}]
814
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
815
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
816
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
817
+ Contents: [{"type"=>"text/plain", "value"=>"memeemem"}]
818
+ Attachments: nana.png, nana.pdf
819
+
820
+ TestMailer#test_email: processed outbound mail in 180.6ms
821
+
822
+ TestMailer#test_email: processed outbound mail in 183.3ms
823
+ Subject: Test email
824
+ From: {"email"=>"contacto@platan.us"}
825
+ To: [{"email"=>"leandro@platan.us"}]
826
+ Cc: [{"email"=>"me@platan.us"}]
827
+ Bcc: [{"email"=>"aa@platan.us"}]
828
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
829
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
830
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
831
+ Contents: ["\ttype: text/plain\n\tvalue: memeemem\n"]
832
+ Attachments: nana.png, nana.pdf
833
+
834
+ TestMailer#test_email: processed outbound mail in 158.5ms
835
+ Subject: Test email
836
+ From: {"email"=>"contacto@platan.us"}
837
+ To: [{"email"=>"leandro@platan.us"}]
838
+ Cc: [{"email"=>"me@platan.us"}]
839
+ Bcc: [{"email"=>"aa@platan.us"}]
840
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
841
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
842
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
843
+ Contents: type: text/plain
844
+ value: memeemem
845
+ Attachments: nana.png, nana.pdf
846
+
847
+ TestMailer#test_email: processed outbound mail in 176.2ms
848
+ Subject: Test email
849
+ From: {"email"=>"contacto@platan.us"}
850
+ To: [{"email"=>"leandro@platan.us"}]
851
+ Cc: [{"email"=>"me@platan.us"}]
852
+ Bcc: [{"email"=>"aa@platan.us"}]
853
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
854
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
855
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
856
+ Contents:
857
+ type: text/plain
858
+ value: memeemem
859
+ Attachments: nana.png, nana.pdf
860
+
861
+ TestMailer#test_email: processed outbound mail in 5.2ms
862
+ Subject: Test email
863
+ From: {"email"=>"contacto@platan.us"}
864
+ To: [{"email"=>"leandro@platan.us"}]
865
+ Cc: [{"email"=>"me@platan.us"}]
866
+ Bcc: [{"email"=>"aa@platan.us"}]
867
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
868
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
869
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
870
+ Contents:
871
+ type: text/plain
872
+ value: memeemem
873
+ Attachments: nana.png, nana.pdf
874
+
875
+ TestMailer#test_email: processed outbound mail in 151.7ms
876
+ Subject: Test email
877
+ From: {"email"=>"contacto@platan.us"}
878
+ To: [{"email"=>"leandro@platan.us"}]
879
+ Cc: [{"email"=>"me@platan.us"}]
880
+ Bcc: [{"email"=>"aa@platan.us"}]
881
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
882
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
883
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
884
+ body:
885
+ type: text/plain
886
+ value: memeemem
887
+ Attachments: nana.png, nana.pdf
888
+
889
+ TestMailer#test_email: processed outbound mail in 139.9ms
890
+ Subject: Test email
891
+ From: {"email"=>"contacto@platan.us"}
892
+ To: [{"email"=>"leandro@platan.us"}]
893
+ Cc: [{"email"=>"me@platan.us"}]
894
+ Bcc: [{"email"=>"aa@platan.us"}]
895
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
896
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
897
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
898
+ body:
899
+ type: text/plain
900
+ value: memeemem
901
+ Attachments:
902
+ nana.png
903
+
904
+ nana.pdf
905
+
906
+ TestMailer#test_email: processed outbound mail in 150.4ms
907
+ Subject: Test email
908
+ From: {"email"=>"contacto@platan.us"}
909
+ To: [{"email"=>"leandro@platan.us"}]
910
+ Cc: [{"email"=>"me@platan.us"}]
911
+ Bcc: [{"email"=>"aa@platan.us"}]
912
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
913
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
914
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
915
+ body:
916
+ type: text/plain
917
+ value: memeemem
918
+ Attachments:
919
+ nana.png
920
+ nana.pdf
921
+
922
+ TestMailer#test_email: processed outbound mail in 175.6ms
923
+ Subject: Test email
924
+ From: {"email"=>"contacto@platan.us"}
925
+ To: [{"email"=>"leandro@platan.us"}]
926
+ Cc: [{"email"=>"me@platan.us"}]
927
+ Bcc: [{"email"=>"aa@platan.us"}]
928
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
929
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
930
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
931
+ body:
932
+ type: text/plain
933
+ value: memeemem
934
+ Attachments:
935
+ * nana.png
936
+ * nana.pdf
937
+
938
+ TestMailer#test_email: processed outbound mail in 168.3ms
939
+ Subject: Test email
940
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
941
+ From: {"email"=>"contacto@platan.us"}
942
+ To: [{"email"=>"leandro@platan.us"}]
943
+ Cc: [{"email"=>"me@platan.us"}]
944
+ Bcc: [{"email"=>"aa@platan.us"}]
945
+ Substitutions: {"%subject%"=>"Berserk!!!", "%body%"=>"Cuerpo!!!"}
946
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
947
+ body:
948
+ type: text/plain
949
+ value: memeemem
950
+ Attachments:
951
+ * nana.png
952
+ * nana.pdf
953
+
954
+ TestMailer#test_email: processed outbound mail in 149.6ms
955
+ Subject: Test email
956
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
957
+ From: {"email"=>"contacto@platan.us"}
958
+ To: [{"email"=>"leandro@platan.us"}]
959
+ Cc: [{"email"=>"me@platan.us"}]
960
+ Bcc: [{"email"=>"aa@platan.us"}]
961
+ Substitutions:
962
+ %subject% => Berserk!!!
963
+ %body% => Cuerpo!!!
964
+ Headers: {"HEADER-0"=>"{\"category\":\"Drip Email\"}"}
965
+ body:
966
+ type: text/plain
967
+ value: memeemem
968
+ Attachments:
969
+ * nana.png
970
+ * nana.pdf
971
+
972
+ TestMailer#test_email: processed outbound mail in 171.5ms
973
+ Subject: Test email
974
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
975
+ From: {"email"=>"contacto@platan.us"}
976
+ To: [{"email"=>"leandro@platan.us"}]
977
+ Cc: [{"email"=>"me@platan.us"}]
978
+ Bcc: [{"email"=>"aa@platan.us"}]
979
+ Substitutions:
980
+ %subject% => Berserk!!!
981
+ %body% => Cuerpo!!!
982
+ Headers:
983
+ HEADER-0 => {"category":"Drip Email"}
984
+ body:
985
+ type: text/plain
986
+ value: memeemem
987
+ Attachments:
988
+ * nana.png
989
+ * nana.pdf
990
+
991
+ TestMailer#test_email: processed outbound mail in 151.4ms
992
+ Subject: Test email
993
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
994
+ From: {"email"=>"contacto@platan.us"}
995
+ To: [{"email"=>"leandro@platan.us"}]
996
+ Cc: [{"email"=>"me@platan.us"}]
997
+ Bcc: [{"email"=>"aa@platan.us"}]
998
+ Substitutions:
999
+ %subject% => Berserk!!!
1000
+ %body% => Cuerpo!!!
1001
+ Headers:
1002
+ HEADER-0 => {"category":"Drip Email"}
1003
+ body:
1004
+ type: text/plain
1005
+ value: memeemem
1006
+ Attachments:
1007
+ nana.png
1008
+ nana.pdf
1009
+
1010
+ TestMailer#test_email: processed outbound mail in 167.8ms
1011
+
1012
+ TestMailer#test_email: processed outbound mail in 164.9ms
1013
+ Subject: Test email
1014
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1015
+ From: {"email"=>"contacto@platan.us"}
1016
+ To: [{"email"=>"leandro@platan.us"}]
1017
+ Cc: [{"email"=>"me@platan.us"}]
1018
+ Bcc: [{"email"=>"aa@platan.us"}]
1019
+ Substitutions:
1020
+ %subject% => Berserk!!!
1021
+ %body% => Cuerpo!!!
1022
+ Headers:
1023
+ HEADER-0 => {"category":"Drip Email"}
1024
+ body:
1025
+ type: text/plain
1026
+ value: memeemem
1027
+ Attachments:
1028
+ nana.png
1029
+ nana.pdf
1030
+
1031
+ TestMailer#test_email: processed outbound mail in 143.4ms
1032
+ Subject: Test email
1033
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1034
+ From: contacto@platan.us
1035
+ To: [{"email"=>"leandro@platan.us"}]
1036
+ Cc: [{"email"=>"me@platan.us"}]
1037
+ Bcc: [{"email"=>"aa@platan.us"}]
1038
+ Substitutions:
1039
+ %subject% => Berserk!!!
1040
+ %body% => Cuerpo!!!
1041
+ Headers:
1042
+ HEADER-0 => {"category":"Drip Email"}
1043
+ body:
1044
+ type: text/plain
1045
+ value: memeemem
1046
+ Attachments:
1047
+ nana.png
1048
+ nana.pdf
1049
+
1050
+ TestMailer#test_email: processed outbound mail in 147.5ms
1051
+ Subject: Test email
1052
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1053
+ From: contacto@platan.us
1054
+ To: leandro@platan.us
1055
+ Cc: me@platan.us
1056
+ Bcc: aa@platan.us
1057
+ Substitutions:
1058
+ %subject% => Berserk!!!
1059
+ %body% => Cuerpo!!!
1060
+ Headers:
1061
+ HEADER-0 => {"category":"Drip Email"}
1062
+ body:
1063
+ type: text/plain
1064
+ value: memeemem
1065
+ Attachments:
1066
+ nana.png
1067
+ nana.pdf
1068
+
1069
+ TestMailer#test_email: processed outbound mail in 150.7ms
1070
+ Subject: Test email
1071
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1072
+ From:
1073
+ contacto@platan.us
1074
+ To:
1075
+ leandro@platan.us
1076
+ Cc:
1077
+ me@platan.us
1078
+ Bcc:
1079
+ aa@platan.us
1080
+ Substitutions:
1081
+ %subject% => Berserk!!!
1082
+ %body% => Cuerpo!!!
1083
+ Headers:
1084
+ HEADER-0 => {"category":"Drip Email"}
1085
+ body:
1086
+ type: text/plain
1087
+ value: memeemem
1088
+ Attachments:
1089
+ nana.png
1090
+ nana.pdf
1091
+
1092
+ TestMailer#test_email: processed outbound mail in 157.2ms
1093
+ Subject: Test email
1094
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1095
+ From: contacto@platan.us
1096
+ To: leandro@platan.us
1097
+ Cc: me@platan.us
1098
+ Bcc: aa@platan.us
1099
+ Substitutions:
1100
+ %subject% => Berserk!!!
1101
+ %body% => Cuerpo!!!
1102
+ Headers:
1103
+ HEADER-0 => {"category":"Drip Email"}
1104
+ body:
1105
+ type: text/plain
1106
+ value: memeemem
1107
+ Attachments:
1108
+ nana.png
1109
+ nana.pdf
1110
+
1111
+ TestMailer#test_email: processed outbound mail in 168.8ms
1112
+ Subject: Test email
1113
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1114
+ From: contacto@platan.us
1115
+ To: leandro@platan.us
1116
+ Cc: me@platan.us
1117
+ Bcc: aa@platan.us
1118
+ Substitutions:
1119
+ %subject% => Berserk!!!
1120
+ %body% => Cuerpo!!!
1121
+ Headers:
1122
+ HEADER-0 => {"category":"Drip Email"}
1123
+ body:
1124
+ type: text/plain
1125
+ value: memeemem
1126
+ Attachments:
1127
+ nana.png
1128
+ nana.pdf
1129
+
1130
+ TestMailer#test_email: processed outbound mail in 152.9ms
1131
+ Subject: Test email
1132
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1133
+ From: contacto@platan.us
1134
+ To: leandro@platan.us
1135
+ Cc: me@platan.us
1136
+ Bcc: aa@platan.us
1137
+ Substitutions:
1138
+ %subject% => Berserk!!!
1139
+ %body% => Cuerpo!!!
1140
+ Headers:
1141
+ HEADER-0 => {"category":"Drip Email"}
1142
+ body:
1143
+ type: text/plain
1144
+ value: memeemem
1145
+ Attachments:
1146
+ nana.png
1147
+ nana.pdf
1148
+
1149
+ TestMailer#test_email: processed outbound mail in 156.5ms
1150
+ Subject: Test email
1151
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1152
+ From: contacto@platan.us
1153
+ To: leandro@platan.us
1154
+ Cc: me@platan.us
1155
+ Bcc: aa@platan.us
1156
+ Substitutions: 
1157
+ %subject% => Berserk!!!
1158
+ %body% => Cuerpo!!!
1159
+ Headers: 
1160
+ HEADER-0 => {"category":"Drip Email"}
1161
+ body: 
1162
+ type: text/plain
1163
+ value: memeemem
1164
+ Attachments: 
1165
+ nana.png
1166
+ nana.pdf
1167
+
1168
+ TestMailer#test_email: processed outbound mail in 167.5ms
1169
+ Subject: Test email
1170
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1171
+ From: contacto@platan.us
1172
+ To: leandro@platan.us
1173
+ Cc: me@platan.us
1174
+ Bcc: aa@platan.us
1175
+ Substitutions: 
1176
+ %subject% => Berserk!!!
1177
+ %body% => Cuerpo!!!
1178
+ Headers: 
1179
+ HEADER-0 => {"category":"Drip Email"}
1180
+ body: 
1181
+ type: text/plain
1182
+ value: memeemem
1183
+ Attachments: 
1184
+ nana.png
1185
+ nana.pdf
1186
+
1187
+ TestMailer#test_email: processed outbound mail in 150.7ms
1188
+ Subject: Test email
1189
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1190
+ From: contacto@platan.us
1191
+ To: leandro@platan.us
1192
+ Cc: me@platan.us
1193
+ Bcc: aa@platan.us
1194
+ Substitutions: 
1195
+ %subject% => Berserk!!!
1196
+ %body% => Cuerpo!!!
1197
+ Headers: 
1198
+ HEADER-0 => {"category":"Drip Email"}
1199
+ body: 
1200
+ type: text/plain
1201
+ value: memeemem
1202
+ Attachments: 
1203
+ nana.png
1204
+ nana.pdf
1205
+
1206
+ TestMailer#test_email: processed outbound mail in 123.6ms
1207
+ Subject: Test email
1208
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1209
+ From: contacto@platan.us
1210
+ To: leandro@platan.us
1211
+ Cc: me@platan.us
1212
+ Bcc: aa@platan.us
1213
+ Substitutions: 
1214
+ %subject% => Berserk!!!
1215
+ %body% => Cuerpo!!!
1216
+ Headers: 
1217
+ HEADER-0 => {"category":"Drip Email"}
1218
+ body: 
1219
+ type: text/plain
1220
+ value: memeemem
1221
+ Attachments: 
1222
+ nana.png
1223
+ nana.pdf
1224
+
1225
+ TestMailer#test_email: processed outbound mail in 130.6ms
1226
+ Subject: Test email
1227
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1228
+ From: contacto@platan.us
1229
+ To: leandro@platan.us
1230
+ Cc: me@platan.us
1231
+ Bcc: aa@platan.us
1232
+ Substitutions: 
1233
+ %subject% => Berserk!!!
1234
+ %body% => Cuerpo!!!
1235
+ Headers: 
1236
+ HEADER-0 => {"category":"Drip Email"}
1237
+ body: 
1238
+ type: text/plain
1239
+ value: memeemem
1240
+ Attachments: 
1241
+ nana.png
1242
+ nana.pdf
1243
+
1244
+ TestMailer#test_email: processed outbound mail in 134.2ms
1245
+ Subject: Test email
1246
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1247
+ From: contacto@platan.us
1248
+ To: leandro@platan.us
1249
+ Cc: me@platan.us
1250
+ Bcc: aa@platan.us
1251
+ Substitutions: 
1252
+ %subject% => Berserk!!!
1253
+ %body% => Cuerpo!!!
1254
+ Headers: 
1255
+ HEADER-0 => {"category":"Drip Email"}
1256
+ body: 
1257
+ type: text/plain
1258
+ value: memeemem
1259
+ Attachments: 
1260
+ nana.png
1261
+ nana.pdf
1262
+
1263
+ TestMailer#test_email: processed outbound mail in 6.6ms
1264
+ Subject: Test email
1265
+ Sendgrid Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1266
+ From: contacto@platan.us
1267
+ To: leandro@platan.us
1268
+ Cc: me@platan.us
1269
+ Bcc: aa@platan.us
1270
+ Substitutions: 
1271
+ %subject% => Berserk!!!
1272
+ %body% => Cuerpo!!!
1273
+ Headers: -
1274
+ body: 
1275
+ type: text/plain
1276
+ value: memeemem
1277
+ Attachments: -
1278
+ Status code: 202
1279
+
1280
+ TestMailer#test_email: processed outbound mail in 7.7ms
1281
+ Subject: Test email
1282
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1283
+ From: contacto@platan.us
1284
+ To: leandro@platan.us
1285
+ Cc: me@platan.us
1286
+ Bcc: aa@platan.us
1287
+ Substitutions: 
1288
+ %subject% => Berserk!!!
1289
+ %body% => Cuerpo!!!
1290
+ Headers: -
1291
+ body: 
1292
+ type: text/plain
1293
+ value: memeemem
1294
+ Attachments: -
1295
+ Status code: 202
1296
+
1297
+ TestMailer#test_email: processed outbound mail in 4.3ms
1298
+ Subject: Test email
1299
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1300
+ From: contacto@platan.us
1301
+ To: leandro@platan.us
1302
+ Cc: me@platan.us
1303
+ Bcc: aa@platan.us
1304
+ Substitutions: 
1305
+ %subject% => Berserk!!!
1306
+ %body% => Cuerpo!!!
1307
+ Headers: -
1308
+ body: 
1309
+ type: text/plain
1310
+ value: memeemem
1311
+ Attachments: -
1312
+ Status code: 202
1313
+
1314
+ TestMailer#test_email: processed outbound mail in 4.7ms
1315
+ Subject: Test email
1316
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1317
+ From: contacto@platan.us
1318
+ To: leandro@platan.us
1319
+ Cc: me@platan.us
1320
+ Bcc: aa@platan.us
1321
+ Substitutions: 
1322
+ %subject% => Berserk!!!
1323
+ %body% => Cuerpo!!!
1324
+ Headers: -
1325
+ body: 
1326
+ type: text/plain
1327
+ value: memeemem
1328
+ Attachments: -
1329
+ 
1330
+
1331
+ The E-mail was successfully sent :)
1332
+ Status Code: 202
1333
+
1334
+ TestMailer#test_email: processed outbound mail in 13.4ms
1335
+
1336
+ TestMailer#test_email: processed outbound mail in 3.2ms
1337
+
1338
+ Subject: Test email
1339
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1340
+ From: contacto@platan.us
1341
+ To: leandro@platan.us
1342
+ Cc: me@platan.us
1343
+ Bcc: aa@platan.us
1344
+ Substitutions: 
1345
+ %subject% => Berserk!!!
1346
+ %body% => Cuerpo!!!
1347
+ Headers: -
1348
+ body: 
1349
+ type: text/plain
1350
+ value: memeemem
1351
+ Attachments: -
1352
+
1353
+
1354
+ The E-mail was successfully sent :)
1355
+ Status Code: 202
1356
+
1357
+
1358
+ TestMailer#test_email: processed outbound mail in 12.1ms
1359
+
1360
+ TestMailer#test_email: processed outbound mail in 6.9ms
1361
+
1362
+ Subject: Test email
1363
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1364
+ From: from@example.com
1365
+ To: leandro@platan.us
1366
+ Cc: -
1367
+ Bcc: -
1368
+ Substitutions: 
1369
+ %subject% => Berserk!!!
1370
+ %body% => Cuerpo!!!
1371
+ Headers: -
1372
+ body: -
1373
+ Attachments: -
1374
+
1375
+
1376
+ The E-mail was successfully sent :)
1377
+ Status Code: 202
1378
+
1379
+
1380
+ TestMailer#test_email: processed outbound mail in 5.1ms
1381
+
1382
+ Subject: Test email
1383
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1384
+ From: from@example.com
1385
+ To: leandro@platan.us
1386
+ Cc: -
1387
+ Bcc: -
1388
+ Substitutions: 
1389
+ %subject% => Berserk!!!
1390
+ %body% => Cuerpo!!!
1391
+ Headers: -
1392
+ body: -
1393
+ Attachments: -
1394
+
1395
+ The E-mail was successfully sent :)
1396
+ Status Code: 202
1397
+
1398
+ TestMailer#test_email: processed outbound mail in 5.8ms
1399
+
1400
+ Subject: Test email
1401
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1402
+ From: from@example.com
1403
+ To: leandro@platan.us
1404
+ Cc: -
1405
+ Bcc: -
1406
+ Substitutions: 
1407
+ %subject% => Berserk!!!
1408
+ %body% => Cuerpo!!!
1409
+ Headers: -
1410
+ body: -
1411
+ Attachments: -
1412
+
1413
+ The E-mail was successfully sent :)
1414
+ Status Code: 202
1415
+
1416
+ TestMailer#test_email: processed outbound mail in 5.4ms
1417
+
1418
+ Subject: Test email
1419
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1420
+ From: from@example.com
1421
+ To: leandro@platan.us
1422
+ Cc: -
1423
+ Bcc: -
1424
+ Substitutions: 
1425
+ %subject% => Berserk!!!
1426
+ %body% => Cuerpo!!!
1427
+ Headers: -
1428
+ body: -
1429
+ Attachments: -
1430
+
1431
+ The E-mail was not sent :(
1432
+ Status Code: 400
1433
+
1434
+ TestMailer#test_email: processed outbound mail in 7.7ms
1435
+
1436
+ Subject: Test email
1437
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1438
+ From: from@example.com
1439
+ To: leandro@platan.us
1440
+ Cc: -
1441
+ Bcc: -
1442
+ Substitutions: 
1443
+ %subject% => Berserk!!!
1444
+ %body% => Cuerpo!!!
1445
+ Headers: -
1446
+ body: -
1447
+ Attachments: -
1448
+
1449
+ TestMailer#test_email: processed outbound mail in 5.1ms
1450
+
1451
+ Subject: Test email
1452
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1453
+ From: from@example.com
1454
+ To: leandro@platan.us
1455
+ Cc: -
1456
+ Bcc: -
1457
+ Substitutions: 
1458
+ %subject% => Berserk!!!
1459
+ %body% => Cuerpo!!!
1460
+ Headers: -
1461
+ body: -
1462
+ Attachments: -
1463
+
1464
+ TestMailer#test_email: processed outbound mail in 5.6ms
1465
+
1466
+ Subject: Test email
1467
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1468
+ From: from@example.com
1469
+ To: leandro@platan.us
1470
+ Cc: -
1471
+ Bcc: -
1472
+ Substitutions: 
1473
+ %subject% => Berserk!!!
1474
+ %body% => Cuerpo!!!
1475
+ Headers: -
1476
+ body: -
1477
+ Attachments: -
1478
+
1479
+ TestMailer#test_email: processed outbound mail in 8.9ms
1480
+
1481
+ Subject: Test email
1482
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1483
+ From: from@example.com
1484
+ To: leandro@platan.us
1485
+ Cc: -
1486
+ Bcc: -
1487
+ Substitutions: 
1488
+ %subject% => Berserk!!!
1489
+ %body% => Cuerpo!!!
1490
+ Headers: -
1491
+ body: -
1492
+ Attachments: -
1493
+
1494
+ TestMailer#test_email: processed outbound mail in 4.8ms
1495
+
1496
+ Subject: Test email
1497
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1498
+ From: from@example.com
1499
+ To: leandro@platan.us
1500
+ Cc: -
1501
+ Bcc: -
1502
+ Substitutions: 
1503
+ %subject% => Berserk!!!
1504
+ %body% => Cuerpo!!!
1505
+ Headers: -
1506
+ body: -
1507
+ Attachments: -
1508
+
1509
+ TestMailer#test_email: processed outbound mail in 3.4ms
1510
+
1511
+ Subject: Test email
1512
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1513
+ From: from@example.com
1514
+ To: leandro@platan.us
1515
+ Cc: -
1516
+ Bcc: -
1517
+ Substitutions: 
1518
+ %subject% => Berserk!!!
1519
+ %body% => Cuerpo!!!
1520
+ Headers: -
1521
+ body: -
1522
+ Attachments: -
1523
+
1524
+ The E-mail was not sent :(
1525
+ Status Code: 400
1526
+ Field: template_id: The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.template_id
1527
+ Field: content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content
1528
+
1529
+ TestMailer#test_email: processed outbound mail in 3.7ms
1530
+
1531
+ Subject: Test email
1532
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1533
+ From: from@example.com
1534
+ To: leandro@platan.us
1535
+ Cc: -
1536
+ Bcc: -
1537
+ Substitutions: 
1538
+ %subject% => Berserk!!!
1539
+ %body% => Cuerpo!!!
1540
+ Headers: -
1541
+ body: -
1542
+ Attachments: -
1543
+
1544
+ The E-mail was not sent :(
1545
+ Status Code: 400
1546
+ Field: template_id: The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'.
1547
+ Field: content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required.
1548
+
1549
+ TestMailer#test_email: processed outbound mail in 4.7ms
1550
+
1551
+ Subject: Test email
1552
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1553
+ From: from@example.com
1554
+ To: leandro@platan.us
1555
+ Cc: -
1556
+ Bcc: -
1557
+ Substitutions: 
1558
+ %subject% => Berserk!!!
1559
+ %body% => Cuerpo!!!
1560
+ Headers: -
1561
+ body: -
1562
+ Attachments: -
1563
+
1564
+ The E-mail was not sent :(
1565
+ Status Code: 400
1566
+ Field: template_id: The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.template_id
1567
+ Field: content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content
1568
+
1569
+ TestMailer#test_email: processed outbound mail in 0.6ms
1570
+
1571
+ Subject: Test email
1572
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1573
+ From: from@example.com
1574
+ To: leandro@platan.us
1575
+ Cc: -
1576
+ Bcc: -
1577
+ Substitutions: 
1578
+ %subject% => Berserk!!!
1579
+ %body% => Cuerpo!!!
1580
+ Headers: -
1581
+ body: -
1582
+ Attachments: -
1583
+
1584
+ TestMailer#test_email: processed outbound mail in 5.0ms
1585
+
1586
+ Subject: Test email
1587
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1588
+ From: from@example.com
1589
+ To: leandro@platan.us
1590
+ Cc: -
1591
+ Bcc: -
1592
+ Substitutions: 
1593
+ %subject% => Berserk!!!
1594
+ %body% => Cuerpo!!!
1595
+ Headers: -
1596
+ body: -
1597
+ Attachments: -
1598
+
1599
+ The E-mail was not sent :(
1600
+ Status Code: 400
1601
+ Errors:
1602
+ Field: template_id: The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.template_id
1603
+ Field: content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content
1604
+
1605
+ TestMailer#test_email: processed outbound mail in 8.4ms
1606
+
1607
+ Subject: Test email
1608
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1609
+ From: from@example.com
1610
+ To: leandro@platan.us
1611
+ Cc: -
1612
+ Bcc: -
1613
+ Substitutions: 
1614
+ %subject% => Berserk!!!
1615
+ %body% => Cuerpo!!!
1616
+ Headers: -
1617
+ body: -
1618
+ Attachments: -
1619
+
1620
+ The E-mail was not sent :(
1621
+ Status Code: 400
1622
+ Errors:
1623
+ * template_id: The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.template_id
1624
+ * content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content
1625
+
1626
+ TestMailer#test_email: processed outbound mail in 4.5ms
1627
+
1628
+ Subject: Test email
1629
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1630
+ From: from@example.com
1631
+ To: leandro@platan.us
1632
+ Cc: -
1633
+ Bcc: -
1634
+ Substitutions: 
1635
+ %subject% => Berserk!!!
1636
+ %body% => Cuerpo!!!
1637
+ Headers: -
1638
+ body: -
1639
+ Attachments: -
1640
+
1641
+ The E-mail was not sent :(
1642
+ Status Code: 400
1643
+ Errors:
1644
+ * ["template_id: ", "The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'.", "- help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.template_id"]
1645
+ * ["content: ", "Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required.", "- help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content"]
1646
+
1647
+ TestMailer#test_email: processed outbound mail in 5.2ms
1648
+
1649
+ Subject: Test email
1650
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1651
+ From: from@example.com
1652
+ To: leandro@platan.us
1653
+ Cc: -
1654
+ Bcc: -
1655
+ Substitutions: 
1656
+ %subject% => Berserk!!!
1657
+ %body% => Cuerpo!!!
1658
+ Headers: -
1659
+ body: -
1660
+ Attachments: -
1661
+
1662
+ The E-mail was not sent :(
1663
+ Status Code: 400
1664
+ Errors:
1665
+ template_id: The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'.- help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.template_id
1666
+ content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required.- help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content
1667
+
1668
+ TestMailer#test_email: processed outbound mail in 3.6ms
1669
+
1670
+ Subject: Test email
1671
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1672
+ From: from@example.com
1673
+ To: leandro@platan.us
1674
+ Cc: -
1675
+ Bcc: -
1676
+ Substitutions: 
1677
+ %subject% => Berserk!!!
1678
+ %body% => Cuerpo!!!
1679
+ Headers: -
1680
+ body: -
1681
+ Attachments: -
1682
+
1683
+ The E-mail was not sent :(
1684
+ Status Code: 400
1685
+ Errors:
1686
+ *template_id: The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'.- help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.template_id
1687
+ *content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required.- help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content
1688
+
1689
+ TestMailer#test_email: processed outbound mail in 3.7ms
1690
+
1691
+ Subject: Test email
1692
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1693
+ From: from@example.com
1694
+ To: leandro@platan.us
1695
+ Cc: -
1696
+ Bcc: -
1697
+ Substitutions: 
1698
+ %subject% => Berserk!!!
1699
+ %body% => Cuerpo!!!
1700
+ Headers: -
1701
+ body: -
1702
+ Attachments: -
1703
+
1704
+ The E-mail was not sent :(
1705
+ Status Code: 400
1706
+ Errors:
1707
+ * template_id: The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'.- help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.template_id
1708
+ * content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required.- help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content
1709
+
1710
+ TestMailer#test_email: processed outbound mail in 5.0ms
1711
+
1712
+ TestMailer#test_email: processed outbound mail in 5.1ms
1713
+
1714
+ Subject: Test email
1715
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1716
+ From: from@example.com
1717
+ To: leandro@platan.us
1718
+ Cc: -
1719
+ Bcc: -
1720
+ Substitutions: 
1721
+ %subject% => Berserk!!!
1722
+ %body% => Cuerpo!!!
1723
+ Headers: -
1724
+ body: -
1725
+ Attachments: -
1726
+
1727
+ The E-mail was not sent :(
1728
+ Status Code: 400
1729
+ Errors:
1730
+ * template_id: The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.template_id
1731
+ * content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content
1732
+
1733
+ TestMailer#test_email: processed outbound mail in 5.1ms
1734
+
1735
+ Subject: Test email
1736
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1737
+ From: from@example.com
1738
+ To: leandro@platan.us
1739
+ Cc: -
1740
+ Bcc: -
1741
+ Substitutions: 
1742
+ %subject% => Berserk!!!
1743
+ %body% => Cuerpo!!!
1744
+ Headers: -
1745
+ body: -
1746
+ Attachments: -
1747
+
1748
+ The E-mail was not sent :(
1749
+ Status Code: 400
1750
+ Errors:
1751
+ * template_id: The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.template_id
1752
+ * content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content
1753
+
1754
+ TestMailer#test_email: processed outbound mail in 4.7ms
1755
+
1756
+ Subject: Test email
1757
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5--------
1758
+ From: from@example.com
1759
+ To: leandro@platan.us
1760
+ Cc: -
1761
+ Bcc: -
1762
+ Substitutions: 
1763
+ %subject% => Berserk!!!
1764
+ %body% => Cuerpo!!!
1765
+ Headers: -
1766
+ body: -
1767
+ Attachments: -
1768
+
1769
+ The E-mail was not sent :(
1770
+ Status Code: 400
1771
+ Errors:
1772
+ * template_id: The template_id must be a valid GUID, you provided 'a225b923-e330-4e9a-8a52-3de3b888f9b5--------'. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.template_id
1773
+ * content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content
1774
+
1775
+ TestMailer#test_email: processed outbound mail in 5.3ms
1776
+
1777
+ TestMailer#test_email: processed outbound mail in 8.9ms
1778
+
1779
+ TestMailer#test_email: processed outbound mail in 6.6ms
1780
+
1781
+ Subject: Test email
1782
+ Template ID: -
1783
+ From: from@example.com
1784
+ To: leandro@platan.us
1785
+ Cc: -
1786
+ Bcc: -
1787
+ Substitutions: 
1788
+ %subject% => Berserk!!!
1789
+ %body% => Cuerpo!!!
1790
+ Headers: -
1791
+ body: -
1792
+ Attachments: -
1793
+
1794
+ The E-mail was not sent :(
1795
+ Status Code: 400
1796
+ Errors:
1797
+ * content: Unless a valid template_id is provided, the content parameter is required. There must be at least one defined content block. We typically suggest both text/plain and text/html blocks are included, but only one block is required. - help: http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.content
1798
+
1799
+ TestMailer#test_email: processed outbound mail in 5.7ms
1800
+
1801
+ TestMailer#test_email: processed outbound mail in 6.4ms
1802
+
1803
+ TestMailer#test_email: processed outbound mail in 3.3ms
1804
+
1805
+ Subject: Test email
1806
+ Template ID: 86dd2c26-80ab-41f3-bd6d-415a38d0bd6d
1807
+ From: from@example.com
1808
+ To: leandro@platan.us
1809
+ Cc: -
1810
+ Bcc: -
1811
+ Substitutions: 
1812
+ %subject% => Berserk!!!
1813
+ %body% => Cuerpo!!!
1814
+ Headers: -
1815
+ body: -
1816
+ Attachments: -
1817
+
1818
+ The E-mail was successfully sent :)
1819
+ Status Code: 202
1820
+
1821
+ TestMailer#test_email: processed outbound mail in 7.9ms
1822
+
1823
+ TestMailer#test_email: processed outbound mail in 5.5ms
1824
+
1825
+ TestMailer#test_email: processed outbound mail in 5.6ms
1826
+
1827
+ TestMailer#test_email: processed outbound mail in 5.1ms
1828
+
1829
+ Subject: Test email
1830
+ Template ID: a225b923-e330-4e9a-8a52-3de3b888f9b5
1831
+ From: from@example.com
1832
+ To: leandro@platan.us
1833
+ Cc: -
1834
+ Bcc: -
1835
+ Substitutions: 
1836
+ %subject% => Berserk!!!
1837
+ %body% => Cuerpo!!!
1838
+ Headers: -
1839
+ body: -
1840
+ Attachments: -
1841
+
1842
+ The E-mail was successfully sent :)
1843
+ Status Code: 202
1844
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.5ms)
1845
+
1846
+ TestMailer#test_email: processed outbound mail in 25.8ms
1847
+
1848
+ Subject: Test email
1849
+ Template ID: -
1850
+ From: from@example.com
1851
+ To: leandro@platan.us
1852
+ Cc: -
1853
+ Bcc: -
1854
+ Substitutions: -
1855
+ Headers: -
1856
+ body: 
1857
+ type: text/html
1858
+ value: <html>
1859
+ <body>
1860
+ <h1>Me llamo leandro y leo desde template</h1>
1861
+
1862
+ </body>
1863
+ </html>
1864
+ 
1865
+ Attachments: -
1866
+
1867
+ The E-mail was successfully sent :)
1868
+ Status Code: 202
1869
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.6ms)
1870
+
1871
+ TestMailer#test_email: processed outbound mail in 23.3ms
1872
+
1873
+ Subject: Test email
1874
+ Template ID: -
1875
+ From: default-sender@platan.us
1876
+ To: leandro@platan.us
1877
+ Cc: -
1878
+ Bcc: -
1879
+ Substitutions: -
1880
+ Headers: -
1881
+ body: 
1882
+ type: text/html
1883
+ value: <html>
1884
+ <body>
1885
+ <h1>Me llamo leandro y leo desde template</h1>
1886
+
1887
+ </body>
1888
+ </html>
1889
+ 
1890
+ Attachments: -
1891
+
1892
+ The E-mail was successfully sent :)
1893
+ Status Code: 202
1894
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.4ms)
1895
+
1896
+ TestMailer#test_email: processed outbound mail in 24.0ms
1897
+
1898
+ Subject: Test email
1899
+ Template ID: -
1900
+ From: default-sender@platan.us
1901
+ To: leandro@platan.us
1902
+ Cc: -
1903
+ Bcc: -
1904
+ Substitutions: -
1905
+ Headers: -
1906
+ body: 
1907
+ type: text/html
1908
+ value: <html>
1909
+ <body>
1910
+ <h1>Me llamo leandro y leo desde template</h1>
1911
+
1912
+ </body>
1913
+ </html>
1914
+ 
1915
+ Attachments: -
1916
+
1917
+ The E-mail was successfully sent :)
1918
+ Status Code: 202
1919
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.3ms)
1920
+
1921
+ TestMailer#test_email: processed outbound mail in 22.5ms
1922
+
1923
+ Subject: Test email
1924
+ Template ID: -
1925
+ From: default-sender@platan.us
1926
+ To: leandro@platan.us
1927
+ Cc: -
1928
+ Bcc: -
1929
+ Substitutions: -
1930
+ Headers: -
1931
+ body: 
1932
+ type: text/html
1933
+ value: <html>
1934
+ <body>
1935
+ <h1>Me llamo leandro y leo desde template</h1>
1936
+
1937
+ </body>
1938
+ </html>
1939
+ 
1940
+ Attachments: -
1941
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (1.4ms)
1942
+
1943
+ TestMailer#test_email: processed outbound mail in 27.2ms
1944
+
1945
+ Subject: Test email
1946
+ Template ID: -
1947
+ From: default-sender@platan.us
1948
+ To: leandro@platan.us
1949
+ Cc: -
1950
+ Bcc: -
1951
+ Substitutions: -
1952
+ Headers: -
1953
+ body: 
1954
+ type: text/html
1955
+ value: <html>
1956
+ <body>
1957
+ <h1>Me llamo leandro y leo desde template</h1>
1958
+
1959
+ </body>
1960
+ </html>
1961
+ 
1962
+ Attachments: -
1963
+ Rendered test_mailer/test_email.html.erb within layouts/mailer (2.3ms)
1964
+
1965
+ TestMailer#test_email: processed outbound mail in 31.1ms
1966
+
1967
+ Subject: Test email
1968
+ Template ID: -
1969
+ From: default-sender@platan.us
1970
+ To: leandro@platan.us
1971
+ Cc: -
1972
+ Bcc: -
1973
+ Substitutions: -
1974
+ Headers: -
1975
+ body: 
1976
+ type: text/html
1977
+ value: <html>
1978
+ <body>
1979
+ <h1>Me llamo leandro y leo desde template</h1>
1980
+
1981
+ </body>
1982
+ </html>
1983
+ 
1984
+ Attachments: -