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.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.rspec +3 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +7 -0
- data/Gemfile +15 -0
- data/Gemfile.lock +192 -0
- data/Guardfile +15 -0
- data/LICENSE.txt +21 -0
- data/README.md +209 -0
- data/Rakefile +10 -0
- data/lib/send_grid_mailer.rb +27 -0
- data/lib/send_grid_mailer/definition.rb +110 -0
- data/lib/send_grid_mailer/deliverer.rb +46 -0
- data/lib/send_grid_mailer/engine.rb +23 -0
- data/lib/send_grid_mailer/errors.rb +2 -0
- data/lib/send_grid_mailer/logger.rb +99 -0
- data/lib/send_grid_mailer/mail_message_ext.rb +7 -0
- data/lib/send_grid_mailer/mailer_base_ext.rb +88 -0
- data/lib/send_grid_mailer/version.rb +3 -0
- data/lib/tasks/send_grid_mailer_tasks.rake +4 -0
- data/send_grid_mailer.gemspec +31 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/mailers/test_mailer.rb +86 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +5 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/app/views/test_mailer/rails_tpl_email.html.erb +1 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +29 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +32 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +46 -0
- data/spec/dummy/config/environments/production.rb +79 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/assets.rb +11 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +56 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +16 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +1984 -0
- data/spec/dummy/log/test.log +58252 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/spec/assets/image.png +0 -0
- data/spec/dummy/spec/assets/video.mp4 +0 -0
- data/spec/dummy/spec/lib/send_grid_mailer/definition_spec.rb +102 -0
- data/spec/dummy/spec/mailers/test_mailer_spec.rb +423 -0
- data/spec/dummy/spec/support/test_helpers.rb +5 -0
- data/spec/rails_helper.rb +28 -0
- data/spec/spec_helper.rb +9 -0
- 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,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,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
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
55
|
+
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
56
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
57
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m 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
|
+
[0;34;49mSubject[0m: Test email
|
1113
|
+
[0;34;49mSendgrid Template ID[0m: a225b923-e330-4e9a-8a52-3de3b888f9b5
|
1114
|
+
[0;34;49mFrom[0m: contacto@platan.us
|
1115
|
+
[0;34;49mTo[0m: leandro@platan.us
|
1116
|
+
[0;34;49mCc[0m: me@platan.us
|
1117
|
+
[0;34;49mBcc[0m: aa@platan.us
|
1118
|
+
[0;34;49mSubstitutions[0m:
|
1119
|
+
%subject% => Berserk!!!
|
1120
|
+
%body% => Cuerpo!!!
|
1121
|
+
[0;34;49mHeaders[0m:
|
1122
|
+
HEADER-0 => {"category":"Drip Email"}
|
1123
|
+
[0;34;49mbody[0m:
|
1124
|
+
type: text/plain
|
1125
|
+
value: memeemem
|
1126
|
+
[0;34;49mAttachments[0m:
|
1127
|
+
nana.png
|
1128
|
+
nana.pdf
|
1129
|
+
|
1130
|
+
TestMailer#test_email: processed outbound mail in 152.9ms
|
1131
|
+
[0;94;49mSubject[0m: Test email
|
1132
|
+
[0;94;49mSendgrid Template ID[0m: a225b923-e330-4e9a-8a52-3de3b888f9b5
|
1133
|
+
[0;94;49mFrom[0m: contacto@platan.us
|
1134
|
+
[0;94;49mTo[0m: leandro@platan.us
|
1135
|
+
[0;94;49mCc[0m: me@platan.us
|
1136
|
+
[0;94;49mBcc[0m: aa@platan.us
|
1137
|
+
[0;94;49mSubstitutions[0m:
|
1138
|
+
%subject% => Berserk!!!
|
1139
|
+
%body% => Cuerpo!!!
|
1140
|
+
[0;94;49mHeaders[0m:
|
1141
|
+
HEADER-0 => {"category":"Drip Email"}
|
1142
|
+
[0;94;49mbody[0m:
|
1143
|
+
type: text/plain
|
1144
|
+
value: memeemem
|
1145
|
+
[0;94;49mAttachments[0m:
|
1146
|
+
nana.png
|
1147
|
+
nana.pdf
|
1148
|
+
|
1149
|
+
TestMailer#test_email: processed outbound mail in 156.5ms
|
1150
|
+
[0;94;49mSubject[0m: [0;33;49mTest email[0m
|
1151
|
+
[0;94;49mSendgrid Template ID[0m: [0;33;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1152
|
+
[0;94;49mFrom[0m: [0;33;49mcontacto@platan.us[0m
|
1153
|
+
[0;94;49mTo[0m: [0;33;49mleandro@platan.us[0m
|
1154
|
+
[0;94;49mCc[0m: [0;33;49mme@platan.us[0m
|
1155
|
+
[0;94;49mBcc[0m: [0;33;49maa@platan.us[0m
|
1156
|
+
[0;94;49mSubstitutions[0m: [0;33;49m
|
1157
|
+
%subject% => Berserk!!!
|
1158
|
+
%body% => Cuerpo!!![0m
|
1159
|
+
[0;94;49mHeaders[0m: [0;33;49m
|
1160
|
+
HEADER-0 => {"category":"Drip Email"}[0m
|
1161
|
+
[0;94;49mbody[0m: [0;33;49m
|
1162
|
+
type: text/plain
|
1163
|
+
value: memeemem[0m
|
1164
|
+
[0;94;49mAttachments[0m: [0;33;49m
|
1165
|
+
nana.png
|
1166
|
+
nana.pdf[0m
|
1167
|
+
|
1168
|
+
TestMailer#test_email: processed outbound mail in 167.5ms
|
1169
|
+
[0;32;49mSubject[0m: [0;93;49mTest email[0m
|
1170
|
+
[0;32;49mSendgrid Template ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1171
|
+
[0;32;49mFrom[0m: [0;93;49mcontacto@platan.us[0m
|
1172
|
+
[0;32;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1173
|
+
[0;32;49mCc[0m: [0;93;49mme@platan.us[0m
|
1174
|
+
[0;32;49mBcc[0m: [0;93;49maa@platan.us[0m
|
1175
|
+
[0;32;49mSubstitutions[0m: [0;93;49m
|
1176
|
+
%subject% => Berserk!!!
|
1177
|
+
%body% => Cuerpo!!![0m
|
1178
|
+
[0;32;49mHeaders[0m: [0;93;49m
|
1179
|
+
HEADER-0 => {"category":"Drip Email"}[0m
|
1180
|
+
[0;32;49mbody[0m: [0;93;49m
|
1181
|
+
type: text/plain
|
1182
|
+
value: memeemem[0m
|
1183
|
+
[0;32;49mAttachments[0m: [0;93;49m
|
1184
|
+
nana.png
|
1185
|
+
nana.pdf[0m
|
1186
|
+
|
1187
|
+
TestMailer#test_email: processed outbound mail in 150.7ms
|
1188
|
+
[0;92;49mSubject[0m: [0;93;49mTest email[0m
|
1189
|
+
[0;92;49mSendgrid Template ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1190
|
+
[0;92;49mFrom[0m: [0;93;49mcontacto@platan.us[0m
|
1191
|
+
[0;92;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1192
|
+
[0;92;49mCc[0m: [0;93;49mme@platan.us[0m
|
1193
|
+
[0;92;49mBcc[0m: [0;93;49maa@platan.us[0m
|
1194
|
+
[0;92;49mSubstitutions[0m: [0;93;49m
|
1195
|
+
%subject% => Berserk!!!
|
1196
|
+
%body% => Cuerpo!!![0m
|
1197
|
+
[0;92;49mHeaders[0m: [0;93;49m
|
1198
|
+
HEADER-0 => {"category":"Drip Email"}[0m
|
1199
|
+
[0;92;49mbody[0m: [0;93;49m
|
1200
|
+
type: text/plain
|
1201
|
+
value: memeemem[0m
|
1202
|
+
[0;92;49mAttachments[0m: [0;93;49m
|
1203
|
+
nana.png
|
1204
|
+
nana.pdf[0m
|
1205
|
+
|
1206
|
+
TestMailer#test_email: processed outbound mail in 123.6ms
|
1207
|
+
[0;32;49mSubject[0m: [0;92;49mTest email[0m
|
1208
|
+
[0;32;49mSendgrid Template ID[0m: [0;92;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1209
|
+
[0;32;49mFrom[0m: [0;92;49mcontacto@platan.us[0m
|
1210
|
+
[0;32;49mTo[0m: [0;92;49mleandro@platan.us[0m
|
1211
|
+
[0;32;49mCc[0m: [0;92;49mme@platan.us[0m
|
1212
|
+
[0;32;49mBcc[0m: [0;92;49maa@platan.us[0m
|
1213
|
+
[0;32;49mSubstitutions[0m: [0;92;49m
|
1214
|
+
%subject% => Berserk!!!
|
1215
|
+
%body% => Cuerpo!!![0m
|
1216
|
+
[0;32;49mHeaders[0m: [0;92;49m
|
1217
|
+
HEADER-0 => {"category":"Drip Email"}[0m
|
1218
|
+
[0;32;49mbody[0m: [0;92;49m
|
1219
|
+
type: text/plain
|
1220
|
+
value: memeemem[0m
|
1221
|
+
[0;32;49mAttachments[0m: [0;92;49m
|
1222
|
+
nana.png
|
1223
|
+
nana.pdf[0m
|
1224
|
+
|
1225
|
+
TestMailer#test_email: processed outbound mail in 130.6ms
|
1226
|
+
[0;94;49mSubject[0m: [0;92;49mTest email[0m
|
1227
|
+
[0;94;49mSendgrid Template ID[0m: [0;92;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1228
|
+
[0;94;49mFrom[0m: [0;92;49mcontacto@platan.us[0m
|
1229
|
+
[0;94;49mTo[0m: [0;92;49mleandro@platan.us[0m
|
1230
|
+
[0;94;49mCc[0m: [0;92;49mme@platan.us[0m
|
1231
|
+
[0;94;49mBcc[0m: [0;92;49maa@platan.us[0m
|
1232
|
+
[0;94;49mSubstitutions[0m: [0;92;49m
|
1233
|
+
%subject% => Berserk!!!
|
1234
|
+
%body% => Cuerpo!!![0m
|
1235
|
+
[0;94;49mHeaders[0m: [0;92;49m
|
1236
|
+
HEADER-0 => {"category":"Drip Email"}[0m
|
1237
|
+
[0;94;49mbody[0m: [0;92;49m
|
1238
|
+
type: text/plain
|
1239
|
+
value: memeemem[0m
|
1240
|
+
[0;94;49mAttachments[0m: [0;92;49m
|
1241
|
+
nana.png
|
1242
|
+
nana.pdf[0m
|
1243
|
+
|
1244
|
+
TestMailer#test_email: processed outbound mail in 134.2ms
|
1245
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1246
|
+
[0;94;49mSendgrid Template ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1247
|
+
[0;94;49mFrom[0m: [0;93;49mcontacto@platan.us[0m
|
1248
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1249
|
+
[0;94;49mCc[0m: [0;93;49mme@platan.us[0m
|
1250
|
+
[0;94;49mBcc[0m: [0;93;49maa@platan.us[0m
|
1251
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1252
|
+
%subject% => Berserk!!!
|
1253
|
+
%body% => Cuerpo!!![0m
|
1254
|
+
[0;94;49mHeaders[0m: [0;93;49m
|
1255
|
+
HEADER-0 => {"category":"Drip Email"}[0m
|
1256
|
+
[0;94;49mbody[0m: [0;93;49m
|
1257
|
+
type: text/plain
|
1258
|
+
value: memeemem[0m
|
1259
|
+
[0;94;49mAttachments[0m: [0;93;49m
|
1260
|
+
nana.png
|
1261
|
+
nana.pdf[0m
|
1262
|
+
|
1263
|
+
TestMailer#test_email: processed outbound mail in 6.6ms
|
1264
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1265
|
+
[0;94;49mSendgrid Template ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1266
|
+
[0;94;49mFrom[0m: [0;93;49mcontacto@platan.us[0m
|
1267
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1268
|
+
[0;94;49mCc[0m: [0;93;49mme@platan.us[0m
|
1269
|
+
[0;94;49mBcc[0m: [0;93;49maa@platan.us[0m
|
1270
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1271
|
+
%subject% => Berserk!!!
|
1272
|
+
%body% => Cuerpo!!![0m
|
1273
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1274
|
+
[0;94;49mbody[0m: [0;93;49m
|
1275
|
+
type: text/plain
|
1276
|
+
value: memeemem[0m
|
1277
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1278
|
+
Status code: 202
|
1279
|
+
|
1280
|
+
TestMailer#test_email: processed outbound mail in 7.7ms
|
1281
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1282
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1283
|
+
[0;94;49mFrom[0m: [0;93;49mcontacto@platan.us[0m
|
1284
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1285
|
+
[0;94;49mCc[0m: [0;93;49mme@platan.us[0m
|
1286
|
+
[0;94;49mBcc[0m: [0;93;49maa@platan.us[0m
|
1287
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1288
|
+
%subject% => Berserk!!!
|
1289
|
+
%body% => Cuerpo!!![0m
|
1290
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1291
|
+
[0;94;49mbody[0m: [0;93;49m
|
1292
|
+
type: text/plain
|
1293
|
+
value: memeemem[0m
|
1294
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1295
|
+
[0;31;49mStatus code: 202[0m
|
1296
|
+
|
1297
|
+
TestMailer#test_email: processed outbound mail in 4.3ms
|
1298
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1299
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1300
|
+
[0;94;49mFrom[0m: [0;93;49mcontacto@platan.us[0m
|
1301
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1302
|
+
[0;94;49mCc[0m: [0;93;49mme@platan.us[0m
|
1303
|
+
[0;94;49mBcc[0m: [0;93;49maa@platan.us[0m
|
1304
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1305
|
+
%subject% => Berserk!!!
|
1306
|
+
%body% => Cuerpo!!![0m
|
1307
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1308
|
+
[0;94;49mbody[0m: [0;93;49m
|
1309
|
+
type: text/plain
|
1310
|
+
value: memeemem[0m
|
1311
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1312
|
+
[0;32;49mStatus code: 202[0m
|
1313
|
+
|
1314
|
+
TestMailer#test_email: processed outbound mail in 4.7ms
|
1315
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1316
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1317
|
+
[0;94;49mFrom[0m: [0;93;49mcontacto@platan.us[0m
|
1318
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1319
|
+
[0;94;49mCc[0m: [0;93;49mme@platan.us[0m
|
1320
|
+
[0;94;49mBcc[0m: [0;93;49maa@platan.us[0m
|
1321
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1322
|
+
%subject% => Berserk!!!
|
1323
|
+
%body% => Cuerpo!!![0m
|
1324
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1325
|
+
[0;94;49mbody[0m: [0;93;49m
|
1326
|
+
type: text/plain
|
1327
|
+
value: memeemem[0m
|
1328
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1329
|
+
[0;32;49m
|
1330
|
+
|
1331
|
+
The E-mail was successfully sent :)
|
1332
|
+
Status Code: 202[0m
|
1333
|
+
|
1334
|
+
TestMailer#test_email: processed outbound mail in 13.4ms
|
1335
|
+
|
1336
|
+
TestMailer#test_email: processed outbound mail in 3.2ms
|
1337
|
+
|
1338
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1339
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1340
|
+
[0;94;49mFrom[0m: [0;93;49mcontacto@platan.us[0m
|
1341
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1342
|
+
[0;94;49mCc[0m: [0;93;49mme@platan.us[0m
|
1343
|
+
[0;94;49mBcc[0m: [0;93;49maa@platan.us[0m
|
1344
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1345
|
+
%subject% => Berserk!!!
|
1346
|
+
%body% => Cuerpo!!![0m
|
1347
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1348
|
+
[0;94;49mbody[0m: [0;93;49m
|
1349
|
+
type: text/plain
|
1350
|
+
value: memeemem[0m
|
1351
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1352
|
+
|
1353
|
+
|
1354
|
+
[0;32;49mThe E-mail was successfully sent :)
|
1355
|
+
Status Code: 202[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1363
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1364
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1365
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1366
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1367
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1368
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1369
|
+
%subject% => Berserk!!!
|
1370
|
+
%body% => Cuerpo!!![0m
|
1371
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1372
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1373
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1374
|
+
|
1375
|
+
|
1376
|
+
[0;32;49mThe E-mail was successfully sent :)
|
1377
|
+
Status Code: 202[0m
|
1378
|
+
|
1379
|
+
|
1380
|
+
TestMailer#test_email: processed outbound mail in 5.1ms
|
1381
|
+
|
1382
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1383
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1384
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1385
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1386
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1387
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1388
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1389
|
+
%subject% => Berserk!!!
|
1390
|
+
%body% => Cuerpo!!![0m
|
1391
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1392
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1393
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1394
|
+
|
1395
|
+
[0;32;49mThe E-mail was successfully sent :)
|
1396
|
+
Status Code: 202[0m
|
1397
|
+
|
1398
|
+
TestMailer#test_email: processed outbound mail in 5.8ms
|
1399
|
+
|
1400
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1401
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1402
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1403
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1404
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1405
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1406
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1407
|
+
%subject% => Berserk!!!
|
1408
|
+
%body% => Cuerpo!!![0m
|
1409
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1410
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1411
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1412
|
+
|
1413
|
+
[0;32;49mThe E-mail was successfully sent :)
|
1414
|
+
Status Code: 202[0m
|
1415
|
+
|
1416
|
+
TestMailer#test_email: processed outbound mail in 5.4ms
|
1417
|
+
|
1418
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1419
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1420
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1421
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1422
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1423
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1424
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1425
|
+
%subject% => Berserk!!!
|
1426
|
+
%body% => Cuerpo!!![0m
|
1427
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1428
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1429
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1437
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1438
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1439
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1440
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1441
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1442
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1443
|
+
%subject% => Berserk!!!
|
1444
|
+
%body% => Cuerpo!!![0m
|
1445
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1446
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1447
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1448
|
+
|
1449
|
+
TestMailer#test_email: processed outbound mail in 5.1ms
|
1450
|
+
|
1451
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1452
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1453
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1454
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1455
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1456
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1457
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1458
|
+
%subject% => Berserk!!!
|
1459
|
+
%body% => Cuerpo!!![0m
|
1460
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1461
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1462
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1463
|
+
|
1464
|
+
TestMailer#test_email: processed outbound mail in 5.6ms
|
1465
|
+
|
1466
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1467
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1468
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1469
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1470
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1471
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1472
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1473
|
+
%subject% => Berserk!!!
|
1474
|
+
%body% => Cuerpo!!![0m
|
1475
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1476
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1477
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1478
|
+
|
1479
|
+
TestMailer#test_email: processed outbound mail in 8.9ms
|
1480
|
+
|
1481
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1482
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1483
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1484
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1485
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1486
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1487
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1488
|
+
%subject% => Berserk!!!
|
1489
|
+
%body% => Cuerpo!!![0m
|
1490
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1491
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1492
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1493
|
+
|
1494
|
+
TestMailer#test_email: processed outbound mail in 4.8ms
|
1495
|
+
|
1496
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1497
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1498
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1499
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1500
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1501
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1502
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1503
|
+
%subject% => Berserk!!!
|
1504
|
+
%body% => Cuerpo!!![0m
|
1505
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1506
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1507
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1508
|
+
|
1509
|
+
TestMailer#test_email: processed outbound mail in 3.4ms
|
1510
|
+
|
1511
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1512
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1513
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1514
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1515
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1516
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1517
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1518
|
+
%subject% => Berserk!!!
|
1519
|
+
%body% => Cuerpo!!![0m
|
1520
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1521
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1522
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1532
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1533
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1534
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1535
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1536
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1537
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1538
|
+
%subject% => Berserk!!!
|
1539
|
+
%body% => Cuerpo!!![0m
|
1540
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1541
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1542
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1543
|
+
|
1544
|
+
[0;31;49mThe 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.[0m
|
1548
|
+
|
1549
|
+
TestMailer#test_email: processed outbound mail in 4.7ms
|
1550
|
+
|
1551
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1552
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1553
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1554
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1555
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1556
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1557
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1558
|
+
%subject% => Berserk!!!
|
1559
|
+
%body% => Cuerpo!!![0m
|
1560
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1561
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1562
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1563
|
+
|
1564
|
+
[0;31;49mThe 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[0m
|
1568
|
+
|
1569
|
+
TestMailer#test_email: processed outbound mail in 0.6ms
|
1570
|
+
|
1571
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1572
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1573
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1574
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1575
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1576
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1577
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1578
|
+
%subject% => Berserk!!!
|
1579
|
+
%body% => Cuerpo!!![0m
|
1580
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1581
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1582
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1583
|
+
|
1584
|
+
TestMailer#test_email: processed outbound mail in 5.0ms
|
1585
|
+
|
1586
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1587
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1588
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1589
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1590
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1591
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1592
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1593
|
+
%subject% => Berserk!!!
|
1594
|
+
%body% => Cuerpo!!![0m
|
1595
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1596
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1597
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1598
|
+
|
1599
|
+
[0;31;49mThe 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[0m
|
1604
|
+
|
1605
|
+
TestMailer#test_email: processed outbound mail in 8.4ms
|
1606
|
+
|
1607
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1608
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1609
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1610
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1611
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1612
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1613
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1614
|
+
%subject% => Berserk!!!
|
1615
|
+
%body% => Cuerpo!!![0m
|
1616
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1617
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1618
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1619
|
+
|
1620
|
+
[0;31;49mThe 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[0m
|
1625
|
+
|
1626
|
+
TestMailer#test_email: processed outbound mail in 4.5ms
|
1627
|
+
|
1628
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1629
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1630
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1631
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1632
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1633
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1634
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1635
|
+
%subject% => Berserk!!!
|
1636
|
+
%body% => Cuerpo!!![0m
|
1637
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1638
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1639
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1640
|
+
|
1641
|
+
[0;31;49mThe 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"][0m
|
1646
|
+
|
1647
|
+
TestMailer#test_email: processed outbound mail in 5.2ms
|
1648
|
+
|
1649
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1650
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1651
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1652
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1653
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1654
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1655
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1656
|
+
%subject% => Berserk!!!
|
1657
|
+
%body% => Cuerpo!!![0m
|
1658
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1659
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1660
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1661
|
+
|
1662
|
+
[0;31;49mThe 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[0m
|
1667
|
+
|
1668
|
+
TestMailer#test_email: processed outbound mail in 3.6ms
|
1669
|
+
|
1670
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1671
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1672
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1673
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1674
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1675
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1676
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1677
|
+
%subject% => Berserk!!!
|
1678
|
+
%body% => Cuerpo!!![0m
|
1679
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1680
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1681
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1682
|
+
|
1683
|
+
[0;31;49mThe 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[0m
|
1688
|
+
|
1689
|
+
TestMailer#test_email: processed outbound mail in 3.7ms
|
1690
|
+
|
1691
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1692
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1693
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1694
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1695
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1696
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1697
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1698
|
+
%subject% => Berserk!!!
|
1699
|
+
%body% => Cuerpo!!![0m
|
1700
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1701
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1702
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1703
|
+
|
1704
|
+
[0;31;49mThe 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[0m
|
1709
|
+
|
1710
|
+
TestMailer#test_email: processed outbound mail in 5.0ms
|
1711
|
+
|
1712
|
+
TestMailer#test_email: processed outbound mail in 5.1ms
|
1713
|
+
|
1714
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1715
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1716
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1717
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1718
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1719
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1720
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1721
|
+
%subject% => Berserk!!!
|
1722
|
+
%body% => Cuerpo!!![0m
|
1723
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1724
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1725
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1726
|
+
|
1727
|
+
[0;31;49mThe 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[0m
|
1732
|
+
|
1733
|
+
TestMailer#test_email: processed outbound mail in 5.1ms
|
1734
|
+
|
1735
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1736
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1737
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1738
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1739
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1740
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1741
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1742
|
+
%subject% => Berserk!!!
|
1743
|
+
%body% => Cuerpo!!![0m
|
1744
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1745
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1746
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1747
|
+
|
1748
|
+
[0;31;49mThe 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[0m
|
1753
|
+
|
1754
|
+
TestMailer#test_email: processed outbound mail in 4.7ms
|
1755
|
+
|
1756
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1757
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5--------[0m
|
1758
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1759
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1760
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1761
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1762
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1763
|
+
%subject% => Berserk!!!
|
1764
|
+
%body% => Cuerpo!!![0m
|
1765
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1766
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1767
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1768
|
+
|
1769
|
+
[0;31;49mThe 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[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1782
|
+
[0;94;49mTemplate ID[0m: [0;93;49m-[0m
|
1783
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1784
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1785
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1786
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1787
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1788
|
+
%subject% => Berserk!!!
|
1789
|
+
%body% => Cuerpo!!![0m
|
1790
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1791
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1792
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1793
|
+
|
1794
|
+
[0;31;49mThe 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[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1806
|
+
[0;94;49mTemplate ID[0m: [0;93;49m86dd2c26-80ab-41f3-bd6d-415a38d0bd6d[0m
|
1807
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1808
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1809
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1810
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1811
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1812
|
+
%subject% => Berserk!!!
|
1813
|
+
%body% => Cuerpo!!![0m
|
1814
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1815
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1816
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1817
|
+
|
1818
|
+
[0;32;49mThe E-mail was successfully sent :)
|
1819
|
+
Status Code: 202[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1830
|
+
[0;94;49mTemplate ID[0m: [0;93;49ma225b923-e330-4e9a-8a52-3de3b888f9b5[0m
|
1831
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1832
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1833
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1834
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1835
|
+
[0;94;49mSubstitutions[0m: [0;93;49m
|
1836
|
+
%subject% => Berserk!!!
|
1837
|
+
%body% => Cuerpo!!![0m
|
1838
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1839
|
+
[0;94;49mbody[0m: [0;93;49m-[0m
|
1840
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1841
|
+
|
1842
|
+
[0;32;49mThe E-mail was successfully sent :)
|
1843
|
+
Status Code: 202[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1849
|
+
[0;94;49mTemplate ID[0m: [0;93;49m-[0m
|
1850
|
+
[0;94;49mFrom[0m: [0;93;49mfrom@example.com[0m
|
1851
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1852
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1853
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1854
|
+
[0;94;49mSubstitutions[0m: [0;93;49m-[0m
|
1855
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1856
|
+
[0;94;49mbody[0m: [0;93;49m
|
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
|
+
[0m
|
1865
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1866
|
+
|
1867
|
+
[0;32;49mThe E-mail was successfully sent :)
|
1868
|
+
Status Code: 202[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1874
|
+
[0;94;49mTemplate ID[0m: [0;93;49m-[0m
|
1875
|
+
[0;94;49mFrom[0m: [0;93;49mdefault-sender@platan.us[0m
|
1876
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1877
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1878
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1879
|
+
[0;94;49mSubstitutions[0m: [0;93;49m-[0m
|
1880
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1881
|
+
[0;94;49mbody[0m: [0;93;49m
|
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
|
+
[0m
|
1890
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1891
|
+
|
1892
|
+
[0;32;49mThe E-mail was successfully sent :)
|
1893
|
+
Status Code: 202[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1899
|
+
[0;94;49mTemplate ID[0m: [0;93;49m-[0m
|
1900
|
+
[0;94;49mFrom[0m: [0;93;49mdefault-sender@platan.us[0m
|
1901
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1902
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1903
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1904
|
+
[0;94;49mSubstitutions[0m: [0;93;49m-[0m
|
1905
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1906
|
+
[0;94;49mbody[0m: [0;93;49m
|
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
|
+
[0m
|
1915
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
1916
|
+
|
1917
|
+
[0;32;49mThe E-mail was successfully sent :)
|
1918
|
+
Status Code: 202[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1924
|
+
[0;94;49mTemplate ID[0m: [0;93;49m-[0m
|
1925
|
+
[0;94;49mFrom[0m: [0;93;49mdefault-sender@platan.us[0m
|
1926
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1927
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1928
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1929
|
+
[0;94;49mSubstitutions[0m: [0;93;49m-[0m
|
1930
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1931
|
+
[0;94;49mbody[0m: [0;93;49m
|
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
|
+
[0m
|
1940
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1946
|
+
[0;94;49mTemplate ID[0m: [0;93;49m-[0m
|
1947
|
+
[0;94;49mFrom[0m: [0;93;49mdefault-sender@platan.us[0m
|
1948
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1949
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1950
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1951
|
+
[0;94;49mSubstitutions[0m: [0;93;49m-[0m
|
1952
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1953
|
+
[0;94;49mbody[0m: [0;93;49m
|
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
|
+
[0m
|
1962
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|
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
|
+
[0;94;49mSubject[0m: [0;93;49mTest email[0m
|
1968
|
+
[0;94;49mTemplate ID[0m: [0;93;49m-[0m
|
1969
|
+
[0;94;49mFrom[0m: [0;93;49mdefault-sender@platan.us[0m
|
1970
|
+
[0;94;49mTo[0m: [0;93;49mleandro@platan.us[0m
|
1971
|
+
[0;94;49mCc[0m: [0;93;49m-[0m
|
1972
|
+
[0;94;49mBcc[0m: [0;93;49m-[0m
|
1973
|
+
[0;94;49mSubstitutions[0m: [0;93;49m-[0m
|
1974
|
+
[0;94;49mHeaders[0m: [0;93;49m-[0m
|
1975
|
+
[0;94;49mbody[0m: [0;93;49m
|
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
|
+
[0m
|
1984
|
+
[0;94;49mAttachments[0m: [0;93;49m-[0m
|