simple_contact 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 94f2ce1364cd06ec37136c9737a769845c5429fe
4
- data.tar.gz: 1009b054fdbd81c36739dc0198cc20c667ab76de
3
+ metadata.gz: 5c4e6093c7760380fa9769c51b4b1381647ea444
4
+ data.tar.gz: e4f8d3d218fd561f0a536d3d393a72943c76d918
5
5
  SHA512:
6
- metadata.gz: ce41dedab162b99e5ae82d10cbf0c2478df74e1dc83f3c9a63421e65d488bb8c1ce1d71911e8e958fc9be32fefb9da68a3a7d96fc97211a95ce3d81ef83d5c3a
7
- data.tar.gz: 43bf2592a3bad1148b656c740a191875e7ed3d5fcc4b8e2245f4336c190444b4c017015874d545d42c38d81bde0b9eea6758f34d360ae1d3b03989f4cee75426
6
+ metadata.gz: b679d0e36c21379ea12f3c001cb0e05cc43bb48fb6d83e63d1e4f49bb81713d0961cd4fd3324be68b124d1190319681b3aef879112f98fe75d6b3966d9e99e40
7
+ data.tar.gz: 0af298def53bd3d848f2d87c288036465e3690cfcc8a69e7f9115e15b8026baa0507fcd28c940c91c25d7fdac2f812dc02e96066a7ec7d52a69a0a43374f13e5
@@ -1,18 +1,21 @@
1
1
  require_dependency "simple_contact/application_controller"
2
2
 
3
3
  class SimpleContact::ContactController < SimpleContact::ApplicationController
4
+
4
5
  def new
5
6
  @message = SimpleContact::Message.new
6
7
  end
7
8
 
8
9
  def create
9
10
  @message = SimpleContact::Message.new(params[:message])
11
+
10
12
  if @message.valid?
11
13
  SimpleContact::ContactMailer.contact_message(@message).deliver
12
14
  redirect_to main_app.root_path, notice: I18n.translate(:mailer_success_message)
13
15
  else
14
- flash.now.alert = "#{I18n.translate(:mailer_error_message)}"
16
+ flash.now.alert = I18n.translate(:mailer_error_message)
15
17
  render :new
16
18
  end
17
19
  end
20
+
18
21
  end
@@ -1,6 +1,16 @@
1
1
  class SimpleContact::ContactMailer < ActionMailer::Base
2
+
3
+ # The to, cc, and bcc addresses can be customized in your own application by creating the appropriate environment variables ENV['SIMPLE_CONTACT_TO_EMAIL'], ENV['SIMPLE_CONTACT_CC_EMAIL'], ENV['SIMPLE_CONTACT_BCC_EMAIL'] respectively
4
+ # An optional subject prefix can be customized in your own application by creating the environment variable ENV['SIMPLE_CONTACT_SUBJECT_PREFIX']. e.g. if ENV['SIMPLE_CONTACT_SUBJECT_PREFIX'] = '[Our Cool Site]' the subject would be rendered as "[Our Cool Site] {subject of the message}"
2
5
  def contact_message(message)
3
6
  @message = message
4
- mail(to: ENV['SIMPLE_CONTACT_TO_EMAIL'], from: @message.email, subject: "#{ENV['SIMPLE_CONTACT_SUBJECT_PREFIX']} #{@message.subject}" )
7
+ mail(
8
+ to: ENV['SIMPLE_CONTACT_TO_EMAIL'],
9
+ cc: ENV['SIMPLE_CONTACT_CC_EMAIL'],
10
+ bcc: ENV['SIMPLE_CONTACT_BCC_EMAIL'],
11
+ from: @message.email,
12
+ subject: [ENV['SIMPLE_CONTACT_SUBJECT_PREFIX'], @message.subject].join(' ')
13
+ )
5
14
  end
15
+
6
16
  end
@@ -1,14 +1,20 @@
1
- class SimpleContact::Message
2
-
1
+ class SimpleContact::Message
2
+ # Simple Contact is a non-active record model, however we still use validations from active model as such.
3
3
  include ActiveModel::Validations
4
4
  include ActiveModel::Conversion
5
5
  extend ActiveModel::Naming
6
6
 
7
+ # Set's up the fields for our message
7
8
  attr_accessor :body, :email, :name, :subject
8
9
 
10
+ # Validates presence of all fields by default
9
11
  validates :body, :subject, :name, :email, presence: true
10
- validates :email, format: { with: /\A[^@\s]+@([^@\s]+\.)+[^@\s]+\z/ }
11
12
 
13
+ # Validates email format & displays a customizable error message from the translation file
14
+ validates :email, format: { with: /\A[^@\s]+@([^@\s]+\.)+[^@\s]+\z/, message: I18n.translate(:invalid_email_message) }
15
+
16
+
17
+ # Setup code to make it work like an AR model would
12
18
  def initialize(attributes = {})
13
19
  attributes.each do |name, value|
14
20
  send("#{name}=", value)
@@ -1,53 +1,65 @@
1
+ <%# Title of contact form %>
1
2
  <div class="page-header">
2
3
  <h1>
3
4
  <%= t(:contact_me) %>
4
5
  </h1>
5
6
  </div>
7
+
8
+
6
9
  <div class="row">
10
+ <%# Reduces the total width of the form & centers %>
7
11
  <div class="col-sm-8 col-sm-offset-2">
8
12
  <%= form_for @message, url: simple_contact.contact_path, html: {class: "form-horizontal" } do |f| %>
9
- <% if @message.errors.any? %>
10
- <script>
11
- $(document).ready(function() {
12
- $('.field_with_errors').parent().addClass('has-error');
13
- });
14
- </script>
15
- <p><%= t(:message_errors_present) %></p>
16
- <ul class='list-unstyled'>
17
- <% @message.errors.full_messages.each do |error| %>
18
- <li><%= error %></li>
19
- <% end %>
20
- </ul>
21
- <% end %>
13
+
22
14
  <div class="form-inputs">
23
- <div class="form-group">
24
- <%= f.label :email, t(:email_address_label).html_safe, class: "col-xs-2 control-label" %>
25
- <div class="col-xs-10">
26
- <%= f.email_field :email, placeholder: t(:email_address_placeholder).html_safe, class: "form-control" %>
15
+
16
+ <%# Lists any errors in the form %>
17
+ <% if @message.errors.any? %>
18
+ <div class='well text-center'>
19
+ <h3><%= t(:message_errors_present) %></h3>
20
+ <ul class='list-unstyled'>
21
+ <% @message.errors.full_messages.each do |error| %>
22
+ <li><%= error %></li>
23
+ <% end %>
24
+ </ul>
27
25
  </div>
28
- </div>
29
- <div class="form-group">
26
+ <% end %>
27
+
28
+ <%# Message fields below %>
29
+ <div class="form-group <%= 'has-error' if @message.errors.present? %>">
30
30
  <%= f.label :name, t(:email_name_label).html_safe, class: "col-xs-2 control-label" %>
31
31
  <div class="col-xs-10">
32
32
  <%= f.text_field :name, placeholder: t(:email_name_placeholder).html_safe, class: "form-control" %>
33
33
  </div>
34
34
  </div>
35
- <div class="form-group">
35
+
36
+ <div class="form-group <%= 'has-error' if @message.errors.present? %>">
37
+ <%= f.label :email, t(:email_address_label).html_safe, class: "col-xs-2 control-label" %>
38
+ <div class="col-xs-10">
39
+ <%= f.email_field :email, placeholder: t(:email_address_placeholder).html_safe, class: "form-control" %>
40
+ </div>
41
+ </div>
42
+
43
+
44
+ <div class="form-group <%= 'has-error' if @message.errors.present? %>">
36
45
  <%= f.label :subject, t(:email_subject_label).html_safe, class: "col-xs-2 control-label" %>
37
46
  <div class="col-xs-10">
38
47
  <%= f.text_field :subject, placeholder: t(:email_subject_placeholder).html_safe, class: "form-control" %>
39
48
  </div>
40
49
  </div>
41
- <div class="form-group">
50
+
51
+ <div class="form-group <%= 'has-error' if @message.errors.present? %>">
42
52
  <%= f.label :body, t(:email_body_label).html_safe, class: "col-xs-2 control-label" %>
43
53
  <div class="col-xs-10">
44
54
  <%= f.text_area :body, placeholder: t(:email_body_placeholder).html_safe, as: :text, rows: 10, class: "form-control" %>
45
55
  </div>
46
56
  </div>
57
+
47
58
  </div>
59
+
48
60
  <br />
49
61
  <div class="text-center">
50
- <button name='commit' class='btn btn-primary btn-lg'><%= t(:submit_message).html_safe %></button>
62
+ <button name='commit' class='btn btn-primary btn-lg'><%= t(:send_message).html_safe %></button>
51
63
  </div>
52
64
  <% end %>
53
65
  </div>
@@ -1,7 +1,13 @@
1
+ <%# This message is left very basic by default. It is designed to be customized %>
1
2
  <h3> You've received a new message from: <%= mail_to @message.email, @message.name %> </h3>
3
+
2
4
  <hr />
5
+
3
6
  <h3> <%=@message.subject %> </h3>
7
+
4
8
  <%= simple_format(@message.body) %>
9
+
5
10
  <br />
6
11
  <hr />
12
+
7
13
  <p> Please respond to <%= @message.name %> as soon as possible. </p>
@@ -10,5 +10,6 @@ en:
10
10
  email_body_placeholder: "Please write your message..."
11
11
  message_errors_present: "Please correct the following errors:"
12
12
  mailer_success_message: "Thanks for contacting us. We'll be in touch soon!"
13
- mailer_error_message: "Please correct the errors below"
14
- submit_message: "<i class='glyphicon glyphicon-envelope'></i> Send Message"
13
+ mailer_error_message: "Please correct the issues below"
14
+ send_message: "<i class='glyphicon glyphicon-envelope'></i> Send Message"
15
+ invalid_email_message: "must be a valid email address"
data/config/routes.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  SimpleContact::Engine.routes.draw do
2
-
2
+ # Routes are simple. All routes will point to the root_url, which will be where you mount the engine.
3
3
  get "/", to: 'contact#new', as: :contact
4
4
  post "/", to: 'contact#create', as: :contact
5
5
  root to: 'contact#new'
@@ -1,3 +1,3 @@
1
1
  module SimpleContact
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -2298,3 +2298,1909 @@ Content-Transfer-Encoding: 7bit
2298
2298
   (0.0ms) rollback transaction
2299
2299
   (0.0ms) begin transaction
2300
2300
   (0.0ms) rollback transaction
2301
+ Connecting to database specified by database.yml
2302
+  (0.2ms) begin transaction
2303
+ Processing by HomeController#index as HTML
2304
+ Rendered home/index.html.erb within layouts/application (1.2ms)
2305
+ Completed 200 OK in 9.2ms (Views: 8.9ms | ActiveRecord: 0.0ms)
2306
+  (0.1ms) rollback transaction
2307
+  (0.0ms) begin transaction
2308
+  (0.0ms) rollback transaction
2309
+  (0.0ms) begin transaction
2310
+ Processing by SimpleContact::ContactController#new as HTML
2311
+ Completed 200 OK in 7.6ms (Views: 7.3ms | ActiveRecord: 0.0ms)
2312
+  (0.1ms) rollback transaction
2313
+  (0.0ms) begin transaction
2314
+ Processing by SimpleContact::ContactController#create as HTML
2315
+ Parameters: {"message"=>{"body"=>"Illum velit veritatis tempore. Et et rerum cupiditate inventore laborum illum. Eveniet commodi tempora tenetur error atque sit officia.", "email"=>nil, "name"=>"Mellie Jaskolski", "subject"=>"Autem quae in odio."}}
2316
+ Completed 200 OK in 5.0ms (Views: 3.5ms | ActiveRecord: 0.0ms)
2317
+  (0.1ms) rollback transaction
2318
+  (0.0ms) begin transaction
2319
+ Processing by SimpleContact::ContactController#create as HTML
2320
+ Parameters: {"message"=>{"body"=>"Temporibus non voluptas et ut totam cumque. Sed temporibus dolorem ut quidem voluptatem sint laborum non. Qui quam placeat et sint eos non eos inventore.", "email"=>"domenica.rohan@fritsch.info", "name"=>"Hannah Buckridge", "subject"=>"Consequatur natus dolores id."}}
2321
+
2322
+ Sent mail to test@gmail.com (10.3ms)
2323
+ Date: Sun, 24 Nov 2013 10:34:54 -0700
2324
+ From: domenica.rohan@fritsch.info
2325
+ To: test@gmail.com
2326
+ Message-ID: <529238be4f6d3_75263fd3c8c5e6cc26675@Bens-MacBook-Pro.local.mail>
2327
+ Subject: [Simple Contact] Consequatur natus dolores id.
2328
+ Mime-Version: 1.0
2329
+ Content-Type: text/html;
2330
+ charset=UTF-8
2331
+ Content-Transfer-Encoding: 7bit
2332
+
2333
+ <h3> You've received a new message from: <a href="mailto:domenica.rohan@fritsch.info">Hannah Buckridge</a> </h3>
2334
+
2335
+ <hr />
2336
+
2337
+ <h3> Consequatur natus dolores id. </h3>
2338
+
2339
+ <p>Temporibus non voluptas et ut totam cumque. Sed temporibus dolorem ut quidem voluptatem sint laborum non. Qui quam placeat et sint eos non eos inventore.</p>
2340
+
2341
+ <br />
2342
+ <hr />
2343
+
2344
+ <p> Please respond to Hannah Buckridge as soon as possible. </p>
2345
+ Redirected to http://test.host/
2346
+ Completed 302 Found in 28.3ms (ActiveRecord: 0.0ms)
2347
+  (0.1ms) rollback transaction
2348
+  (0.0ms) begin transaction
2349
+
2350
+ Sent mail to test@example.com (13.7ms)
2351
+ Date: Sun, 24 Nov 2013 10:34:54 -0700
2352
+ From: alyce@fisher.co.uk
2353
+ To: test@example.com
2354
+ Cc: cc_me@example.com,
2355
+ cc_me2@example.com
2356
+ Message-ID: <529238be5d393_75263fd3c8c5e6cc267a6@Bens-MacBook-Pro.local.mail>
2357
+ Subject: [Simple Contact] Minima a consectetur qui non.
2358
+ Mime-Version: 1.0
2359
+ Content-Type: text/html;
2360
+ charset=UTF-8
2361
+ Content-Transfer-Encoding: 7bit
2362
+
2363
+ <h3> You've received a new message from: <a href="mailto:alyce@fisher.co.uk">Elise Renner</a> </h3>
2364
+
2365
+ <hr />
2366
+
2367
+ <h3> Minima a consectetur qui non. </h3>
2368
+
2369
+ <p>Omnis minima dolor consequatur odit doloremque esse ducimus voluptatem. Ipsa omnis aut omnis. Facere et totam qui at unde non omnis et. Dignissimos porro iure similique.</p>
2370
+
2371
+ <br />
2372
+ <hr />
2373
+
2374
+ <p> Please respond to Elise Renner as soon as possible. </p>
2375
+  (0.1ms) rollback transaction
2376
+  (0.0ms) begin transaction
2377
+
2378
+ Sent mail to test@example.com (12.2ms)
2379
+ Date: Sun, 24 Nov 2013 10:34:54 -0700
2380
+ From: wyatt.bailey@torp.us
2381
+ To: test@example.com
2382
+ Cc: cc_me@example.com,
2383
+ cc_me2@example.com
2384
+ Message-ID: <529238be64b46_75263fd3c8c5e6cc2685@Bens-MacBook-Pro.local.mail>
2385
+ Subject: [Simple Contact] Sint voluptas reprehenderit laborum deleniti.
2386
+ Mime-Version: 1.0
2387
+ Content-Type: text/html;
2388
+ charset=UTF-8
2389
+ Content-Transfer-Encoding: 7bit
2390
+
2391
+ <h3> You've received a new message from: <a href="mailto:wyatt.bailey@torp.us">Laila Mueller</a> </h3>
2392
+
2393
+ <hr />
2394
+
2395
+ <h3> Sint voluptas reprehenderit laborum deleniti. </h3>
2396
+
2397
+ <p>Nam asperiores sit sunt vel officiis ullam quia dolor. Aut quae eveniet rem qui cumque. Deleniti nemo eligendi cum perspiciatis et quae.</p>
2398
+
2399
+ <br />
2400
+ <hr />
2401
+
2402
+ <p> Please respond to Laila Mueller as soon as possible. </p>
2403
+  (0.1ms) rollback transaction
2404
+  (0.0ms) begin transaction
2405
+
2406
+ Sent mail to test@example.com (12.8ms)
2407
+ Date: Sun, 24 Nov 2013 10:34:54 -0700
2408
+ From: barton.bosco@berge.ca
2409
+ To: test@example.com
2410
+ Cc: cc_me@example.com,
2411
+ cc_me2@example.com
2412
+ Message-ID: <529238be6ba4e_75263fd3c8c5e6cc269a2@Bens-MacBook-Pro.local.mail>
2413
+ Subject: [Simple Contact] Ea vel ad consequatur enim.
2414
+ Mime-Version: 1.0
2415
+ Content-Type: text/html;
2416
+ charset=UTF-8
2417
+ Content-Transfer-Encoding: 7bit
2418
+
2419
+ <h3> You've received a new message from: <a href="mailto:barton.bosco@berge.ca">Michel Hermiston</a> </h3>
2420
+
2421
+ <hr />
2422
+
2423
+ <h3> Ea vel ad consequatur enim. </h3>
2424
+
2425
+ <p>Laborum praesentium quas aut ab illum. Sed deleniti fugiat deserunt aliquam velit et. Et similique ex incidunt vel. Quibusdam deserunt suscipit qui quas non ipsum. Qui dolorum quo voluptatem eaque quasi voluptas incidunt blanditiis.</p>
2426
+
2427
+ <br />
2428
+ <hr />
2429
+
2430
+ <p> Please respond to Michel Hermiston as soon as possible. </p>
2431
+  (0.1ms) rollback transaction
2432
+  (0.0ms) begin transaction
2433
+  (0.0ms) rollback transaction
2434
+  (0.0ms) begin transaction
2435
+  (0.0ms) rollback transaction
2436
+  (0.0ms) begin transaction
2437
+  (0.0ms) rollback transaction
2438
+  (0.0ms) begin transaction
2439
+  (0.0ms) rollback transaction
2440
+  (0.0ms) begin transaction
2441
+  (0.0ms) rollback transaction
2442
+  (0.0ms) begin transaction
2443
+  (0.0ms) rollback transaction
2444
+  (0.0ms) begin transaction
2445
+  (0.0ms) rollback transaction
2446
+ Connecting to database specified by database.yml
2447
+  (0.2ms) begin transaction
2448
+ Processing by HomeController#index as HTML
2449
+ Rendered home/index.html.erb within layouts/application (0.7ms)
2450
+ Completed 200 OK in 6.4ms (Views: 6.2ms | ActiveRecord: 0.0ms)
2451
+  (0.1ms) rollback transaction
2452
+  (0.0ms) begin transaction
2453
+  (0.0ms) rollback transaction
2454
+  (0.0ms) begin transaction
2455
+ Processing by SimpleContact::ContactController#new as HTML
2456
+ Completed 200 OK in 6.9ms (Views: 6.6ms | ActiveRecord: 0.0ms)
2457
+  (0.0ms) rollback transaction
2458
+  (0.0ms) begin transaction
2459
+ Processing by SimpleContact::ContactController#create as HTML
2460
+ Parameters: {"message"=>{"body"=>"Et est et consequatur aut nobis enim. Et ducimus quia hic consectetur. Est in magnam ex dolores ut rerum. Laudantium earum aliquid alias aperiam rerum mollitia. Dolores optio provident et et suscipit voluptate et.", "email"=>nil, "name"=>"Martin Turcotte IV", "subject"=>"Suscipit nihil ut et aut sit libero consequuntur."}}
2461
+ Completed 200 OK in 4.6ms (Views: 3.3ms | ActiveRecord: 0.0ms)
2462
+  (0.1ms) rollback transaction
2463
+  (0.0ms) begin transaction
2464
+ Processing by SimpleContact::ContactController#create as HTML
2465
+ Parameters: {"message"=>{"body"=>"Necessitatibus placeat autem blanditiis excepturi ut dignissimos est. Et excepturi eius beatae maxime voluptatibus voluptas omnis. Qui ad harum molestiae qui sapiente. Doloribus nesciunt non quidem aut eius pariatur laudantium blanditiis.", "email"=>"christop@braun.com", "name"=>"Gabriella Murazik", "subject"=>"Illo inventore sequi omnis aut et corporis qui expedita."}}
2466
+
2467
+ Sent mail to test@gmail.com (9.6ms)
2468
+ Date: Sun, 24 Nov 2013 10:35:35 -0700
2469
+ From: christop@braun.com
2470
+ To: test@gmail.com
2471
+ Message-ID: <529238e7f15a4_75493ff1c605e6d093534@Bens-MacBook-Pro.local.mail>
2472
+ Subject: [Simple Contact] Illo inventore sequi omnis aut et corporis qui
2473
+ expedita.
2474
+ Mime-Version: 1.0
2475
+ Content-Type: text/html;
2476
+ charset=UTF-8
2477
+ Content-Transfer-Encoding: 7bit
2478
+
2479
+ <h3> You've received a new message from: <a href="mailto:christop@braun.com">Gabriella Murazik</a> </h3>
2480
+
2481
+ <hr />
2482
+
2483
+ <h3> Illo inventore sequi omnis aut et corporis qui expedita. </h3>
2484
+
2485
+ <p>Necessitatibus placeat autem blanditiis excepturi ut dignissimos est. Et excepturi eius beatae maxime voluptatibus voluptas omnis. Qui ad harum molestiae qui sapiente. Doloribus nesciunt non quidem aut eius pariatur laudantium blanditiis.</p>
2486
+
2487
+ <br />
2488
+ <hr />
2489
+
2490
+ <p> Please respond to Gabriella Murazik as soon as possible. </p>
2491
+ Redirected to http://test.host/
2492
+ Completed 302 Found in 25.1ms (ActiveRecord: 0.0ms)
2493
+  (0.1ms) rollback transaction
2494
+  (0.0ms) begin transaction
2495
+
2496
+ Sent mail to test@example.com (11.9ms)
2497
+ Date: Sun, 24 Nov 2013 10:35:36 -0700
2498
+ From: alvis@vonruedenwhite.us
2499
+ To: test@example.com
2500
+ Cc: cc_me@example.com,
2501
+ cc_me2@example.com
2502
+ Message-ID: <529238e89e26_75493ff1c605e6d09368@Bens-MacBook-Pro.local.mail>
2503
+ Subject: [Simple Contact] Officia quasi perferendis alias ipsam.
2504
+ Mime-Version: 1.0
2505
+ Content-Type: text/html;
2506
+ charset=UTF-8
2507
+ Content-Transfer-Encoding: 7bit
2508
+
2509
+ <h3> You've received a new message from: <a href="mailto:alvis@vonruedenwhite.us">Preston Sipes</a> </h3>
2510
+
2511
+ <hr />
2512
+
2513
+ <h3> Officia quasi perferendis alias ipsam. </h3>
2514
+
2515
+ <p>Id quia et provident commodi temporibus. Ex vel tempore culpa architecto asperiores. Voluptatem blanditiis recusandae repudiandae. Hic omnis praesentium quo ut provident. Non culpa eius amet eos aut aut.</p>
2516
+
2517
+ <br />
2518
+ <hr />
2519
+
2520
+ <p> Please respond to Preston Sipes as soon as possible. </p>
2521
+  (0.1ms) rollback transaction
2522
+  (0.0ms) begin transaction
2523
+
2524
+ Sent mail to test@example.com (11.7ms)
2525
+ Date: Sun, 24 Nov 2013 10:35:36 -0700
2526
+ From: paula.kihn@wiegandconroy.ca
2527
+ To: test@example.com
2528
+ Cc: cc_me@example.com,
2529
+ cc_me2@example.com
2530
+ Message-ID: <529238e810b00_75493ff1c605e6d093723@Bens-MacBook-Pro.local.mail>
2531
+ Subject: [Simple Contact] Impedit eligendi eum non fuga nostrum sit quasi.
2532
+ Mime-Version: 1.0
2533
+ Content-Type: text/html;
2534
+ charset=UTF-8
2535
+ Content-Transfer-Encoding: 7bit
2536
+
2537
+ <h3> You've received a new message from: <a href="mailto:paula.kihn@wiegandconroy.ca">Herminio Stamm</a> </h3>
2538
+
2539
+ <hr />
2540
+
2541
+ <h3> Impedit eligendi eum non fuga nostrum sit quasi. </h3>
2542
+
2543
+ <p>Rerum ex natus cumque a. Doloribus non quod tempora quaerat impedit eaque cumque. Expedita aut officiis necessitatibus vitae omnis eius sint.</p>
2544
+
2545
+ <br />
2546
+ <hr />
2547
+
2548
+ <p> Please respond to Herminio Stamm as soon as possible. </p>
2549
+  (0.0ms) rollback transaction
2550
+  (0.0ms) begin transaction
2551
+
2552
+ Sent mail to test@example.com (11.6ms)
2553
+ Date: Sun, 24 Nov 2013 10:35:36 -0700
2554
+ From: brenna@wolff.com
2555
+ To: test@example.com
2556
+ Cc: cc_me@example.com,
2557
+ cc_me2@example.com
2558
+ Message-ID: <529238e817415_75493ff1c605e6d093826@Bens-MacBook-Pro.local.mail>
2559
+ Subject: [Simple Contact] Dolores eos in qui facilis est quibusdam.
2560
+ Mime-Version: 1.0
2561
+ Content-Type: text/html;
2562
+ charset=UTF-8
2563
+ Content-Transfer-Encoding: 7bit
2564
+
2565
+ <h3> You've received a new message from: <a href="mailto:brenna@wolff.com">Ms. Catharine Balistreri</a> </h3>
2566
+
2567
+ <hr />
2568
+
2569
+ <h3> Dolores eos in qui facilis est quibusdam. </h3>
2570
+
2571
+ <p>Et aliquam repellat voluptas est delectus eligendi qui. Hic et culpa aliquid enim autem qui corrupti a. Consequatur quis non minus.</p>
2572
+
2573
+ <br />
2574
+ <hr />
2575
+
2576
+ <p> Please respond to Ms. Catharine Balistreri as soon as possible. </p>
2577
+  (0.1ms) rollback transaction
2578
+  (0.0ms) begin transaction
2579
+  (0.0ms) rollback transaction
2580
+  (0.0ms) begin transaction
2581
+  (0.0ms) rollback transaction
2582
+  (0.0ms) begin transaction
2583
+  (0.0ms) rollback transaction
2584
+  (0.1ms) begin transaction
2585
+  (0.0ms) rollback transaction
2586
+  (0.0ms) begin transaction
2587
+  (0.0ms) rollback transaction
2588
+  (0.0ms) begin transaction
2589
+  (0.0ms) rollback transaction
2590
+  (0.0ms) begin transaction
2591
+  (0.0ms) rollback transaction
2592
+ Connecting to database specified by database.yml
2593
+  (0.2ms) begin transaction
2594
+ Processing by HomeController#index as HTML
2595
+ Rendered home/index.html.erb within layouts/application (0.7ms)
2596
+ Completed 200 OK in 6.2ms (Views: 6.0ms | ActiveRecord: 0.0ms)
2597
+  (0.0ms) rollback transaction
2598
+  (0.0ms) begin transaction
2599
+  (0.0ms) rollback transaction
2600
+  (0.0ms) begin transaction
2601
+ Processing by SimpleContact::ContactController#new as HTML
2602
+ Completed 200 OK in 6.7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
2603
+  (0.0ms) rollback transaction
2604
+  (0.0ms) begin transaction
2605
+ Processing by SimpleContact::ContactController#create as HTML
2606
+ Parameters: {"message"=>{"body"=>"Explicabo reiciendis provident magni id rerum ullam. Officia facilis rerum earum facere maxime dolor. Est excepturi ut nihil possimus consequatur molestiae veniam consequuntur. Nihil non vitae voluptatem.", "email"=>nil, "name"=>"Leilani Treutel", "subject"=>"Consequatur et est a necessitatibus hic esse."}}
2607
+ Completed 200 OK in 4.5ms (Views: 3.2ms | ActiveRecord: 0.0ms)
2608
+  (0.1ms) rollback transaction
2609
+  (0.0ms) begin transaction
2610
+ Processing by SimpleContact::ContactController#create as HTML
2611
+ Parameters: {"message"=>{"body"=>"Numquam excepturi perspiciatis et. Voluptatem recusandae nihil suscipit nostrum dolorem. Velit ea dolore enim consectetur architecto amet ut. Nisi animi voluptas illo neque pariatur cum.", "email"=>"sonya.macejkovic@pfeffer.us", "name"=>"Estella Rolfson", "subject"=>"Sit impedit eaque omnis pariatur quae alias at saepe."}}
2612
+
2613
+ Sent mail to test@gmail.com (9.5ms)
2614
+ Date: Sun, 24 Nov 2013 10:35:57 -0700
2615
+ From: sonya.macejkovic@pfeffer.us
2616
+ To: test@gmail.com
2617
+ Message-ID: <529238fd489cb_75673fd23a05e6cc44748@Bens-MacBook-Pro.local.mail>
2618
+ Subject: [Simple Contact] Sit impedit eaque omnis pariatur quae alias at
2619
+ saepe.
2620
+ Mime-Version: 1.0
2621
+ Content-Type: text/html;
2622
+ charset=UTF-8
2623
+ Content-Transfer-Encoding: 7bit
2624
+
2625
+ <h3> You've received a new message from: <a href="mailto:sonya.macejkovic@pfeffer.us">Estella Rolfson</a> </h3>
2626
+
2627
+ <hr />
2628
+
2629
+ <h3> Sit impedit eaque omnis pariatur quae alias at saepe. </h3>
2630
+
2631
+ <p>Numquam excepturi perspiciatis et. Voluptatem recusandae nihil suscipit nostrum dolorem. Velit ea dolore enim consectetur architecto amet ut. Nisi animi voluptas illo neque pariatur cum.</p>
2632
+
2633
+ <br />
2634
+ <hr />
2635
+
2636
+ <p> Please respond to Estella Rolfson as soon as possible. </p>
2637
+ Redirected to http://test.host/
2638
+ Completed 302 Found in 25.2ms (ActiveRecord: 0.0ms)
2639
+  (0.1ms) rollback transaction
2640
+  (0.0ms) begin transaction
2641
+
2642
+ Sent mail to test@example.com (11.7ms)
2643
+ Date: Sun, 24 Nov 2013 10:35:57 -0700
2644
+ From: rod@bode.name
2645
+ To: test@example.com
2646
+ Cc: cc_me@example.com,
2647
+ cc_me2@example.com
2648
+ Message-ID: <529238fd55450_75673fd23a05e6cc448c0@Bens-MacBook-Pro.local.mail>
2649
+ Subject: [Simple Contact] Ut asperiores culpa quibusdam et quaerat mollitia.
2650
+ Mime-Version: 1.0
2651
+ Content-Type: text/html;
2652
+ charset=UTF-8
2653
+ Content-Transfer-Encoding: 7bit
2654
+
2655
+ <h3> You've received a new message from: <a href="mailto:rod@bode.name">Gerald Yost</a> </h3>
2656
+
2657
+ <hr />
2658
+
2659
+ <h3> Ut asperiores culpa quibusdam et quaerat mollitia. </h3>
2660
+
2661
+ <p>Ab sed minus velit eum sit. Suscipit dolor sit repudiandae iure. Perspiciatis voluptatem atque unde commodi aliquam. Omnis sit est vel eos.</p>
2662
+
2663
+ <br />
2664
+ <hr />
2665
+
2666
+ <p> Please respond to Gerald Yost as soon as possible. </p>
2667
+  (0.1ms) rollback transaction
2668
+  (0.0ms) begin transaction
2669
+
2670
+ Sent mail to test@example.com (11.5ms)
2671
+ Date: Sun, 24 Nov 2013 10:35:57 -0700
2672
+ From: kale_gulgowski@douglas.us
2673
+ To: test@example.com
2674
+ Cc: cc_me@example.com,
2675
+ cc_me2@example.com
2676
+ Message-ID: <529238fd5bdfa_75673fd23a05e6cc44950@Bens-MacBook-Pro.local.mail>
2677
+ Subject: [Simple Contact] Et et eos natus.
2678
+ Mime-Version: 1.0
2679
+ Content-Type: text/html;
2680
+ charset=UTF-8
2681
+ Content-Transfer-Encoding: 7bit
2682
+
2683
+ <h3> You've received a new message from: <a href="mailto:kale_gulgowski@douglas.us">Edwardo Flatley</a> </h3>
2684
+
2685
+ <hr />
2686
+
2687
+ <h3> Et et eos natus. </h3>
2688
+
2689
+ <p>Vitae nobis in mollitia ratione. Rem culpa veniam facilis inventore. Incidunt sed voluptatem minus fuga iste asperiores aperiam facere. Qui vel deleniti commodi laborum.</p>
2690
+
2691
+ <br />
2692
+ <hr />
2693
+
2694
+ <p> Please respond to Edwardo Flatley as soon as possible. </p>
2695
+  (0.0ms) rollback transaction
2696
+  (0.0ms) begin transaction
2697
+
2698
+ Sent mail to test@example.com (11.8ms)
2699
+ Date: Sun, 24 Nov 2013 10:35:57 -0700
2700
+ From: xavier@hillshackett.com
2701
+ To: test@example.com
2702
+ Cc: cc_me@example.com,
2703
+ cc_me2@example.com
2704
+ Message-ID: <529238fd62649_75673fd23a05e6cc45055@Bens-MacBook-Pro.local.mail>
2705
+ Subject: [Simple Contact] Commodi eaque corrupti ab suscipit.
2706
+ Mime-Version: 1.0
2707
+ Content-Type: text/html;
2708
+ charset=UTF-8
2709
+ Content-Transfer-Encoding: 7bit
2710
+
2711
+ <h3> You've received a new message from: <a href="mailto:xavier@hillshackett.com">Nayeli O&#x27;Hara</a> </h3>
2712
+
2713
+ <hr />
2714
+
2715
+ <h3> Commodi eaque corrupti ab suscipit. </h3>
2716
+
2717
+ <p>Architecto cum eos voluptatibus doloribus quia non reprehenderit animi. Sed facilis distinctio magnam neque minus est rerum ipsam. Fuga unde quo laboriosam.</p>
2718
+
2719
+ <br />
2720
+ <hr />
2721
+
2722
+ <p> Please respond to Nayeli O&#x27;Hara as soon as possible. </p>
2723
+  (0.1ms) rollback transaction
2724
+  (0.0ms) begin transaction
2725
+  (0.0ms) rollback transaction
2726
+  (0.0ms) begin transaction
2727
+  (0.0ms) rollback transaction
2728
+  (0.0ms) begin transaction
2729
+  (0.0ms) rollback transaction
2730
+  (0.0ms) begin transaction
2731
+  (0.0ms) rollback transaction
2732
+  (0.0ms) begin transaction
2733
+  (0.0ms) rollback transaction
2734
+  (0.0ms) begin transaction
2735
+  (0.0ms) rollback transaction
2736
+  (0.0ms) begin transaction
2737
+  (0.0ms) rollback transaction
2738
+ Connecting to database specified by database.yml
2739
+  (0.2ms) begin transaction
2740
+ Processing by HomeController#index as HTML
2741
+ Rendered home/index.html.erb within layouts/application (0.8ms)
2742
+ Completed 200 OK in 6.9ms (Views: 6.6ms | ActiveRecord: 0.0ms)
2743
+  (0.1ms) rollback transaction
2744
+  (0.0ms) begin transaction
2745
+  (0.0ms) rollback transaction
2746
+  (0.0ms) begin transaction
2747
+ Processing by SimpleContact::ContactController#new as HTML
2748
+ Completed 200 OK in 7.0ms (Views: 6.8ms | ActiveRecord: 0.0ms)
2749
+  (0.0ms) rollback transaction
2750
+  (0.0ms) begin transaction
2751
+ Processing by SimpleContact::ContactController#create as HTML
2752
+ Parameters: {"message"=>{"body"=>"Tenetur quo ullam delectus optio odio sed. Et sit omnis rerum fuga consequuntur animi dicta. Soluta libero veritatis reiciendis minus. Fugit iusto rerum eveniet excepturi.", "email"=>nil, "name"=>"Kattie Tremblay", "subject"=>"Ut est et nostrum dolorem dolor quia optio quia."}}
2753
+ Completed 200 OK in 5.0ms (Views: 3.6ms | ActiveRecord: 0.0ms)
2754
+  (0.1ms) rollback transaction
2755
+  (0.0ms) begin transaction
2756
+ Processing by SimpleContact::ContactController#create as HTML
2757
+ Parameters: {"message"=>{"body"=>"Sit accusamus velit quia nisi id et. Nisi nihil sunt aut eum. Tempora atque et voluptas et dolor nihil quidem omnis. Qui architecto ea alias enim dolorum.", "email"=>"alvina.schaefer@treutelbins.biz", "name"=>"Americo Bradtke", "subject"=>"Recusandae omnis dolor ab hic ut voluptas."}}
2758
+
2759
+ Sent mail to test@gmail.com (9.5ms)
2760
+ Date: Sun, 24 Nov 2013 10:36:15 -0700
2761
+ From: alvina.schaefer@treutelbins.biz
2762
+ To: test@gmail.com
2763
+ Message-ID: <5292390f39be3_758c3fd6dcc5e6d8484c6@Bens-MacBook-Pro.local.mail>
2764
+ Subject: [Simple Contact] Recusandae omnis dolor ab hic ut voluptas.
2765
+ Mime-Version: 1.0
2766
+ Content-Type: text/html;
2767
+ charset=UTF-8
2768
+ Content-Transfer-Encoding: 7bit
2769
+
2770
+ <h3> You've received a new message from: <a href="mailto:alvina.schaefer@treutelbins.biz">Americo Bradtke</a> </h3>
2771
+
2772
+ <hr />
2773
+
2774
+ <h3> Recusandae omnis dolor ab hic ut voluptas. </h3>
2775
+
2776
+ <p>Sit accusamus velit quia nisi id et. Nisi nihil sunt aut eum. Tempora atque et voluptas et dolor nihil quidem omnis. Qui architecto ea alias enim dolorum.</p>
2777
+
2778
+ <br />
2779
+ <hr />
2780
+
2781
+ <p> Please respond to Americo Bradtke as soon as possible. </p>
2782
+ Redirected to http://test.host/
2783
+ Completed 302 Found in 25.8ms (ActiveRecord: 0.0ms)
2784
+  (0.1ms) rollback transaction
2785
+  (0.0ms) begin transaction
2786
+
2787
+ Sent mail to test@example.com (12.2ms)
2788
+ Date: Sun, 24 Nov 2013 10:36:15 -0700
2789
+ From: shaun@macejkovic.biz
2790
+ To: test@example.com
2791
+ Cc: cc_me@example.com,
2792
+ cc_me2@example.com
2793
+ Message-ID: <5292390f46a76_758c3fd6dcc5e6d84851e@Bens-MacBook-Pro.local.mail>
2794
+ Subject: [Simple Contact] Cumque quam ipsum sed voluptate beatae eum qui
2795
+ maiores.
2796
+ Mime-Version: 1.0
2797
+ Content-Type: text/html;
2798
+ charset=UTF-8
2799
+ Content-Transfer-Encoding: 7bit
2800
+
2801
+ <h3> You've received a new message from: <a href="mailto:shaun@macejkovic.biz">Ramon Ward</a> </h3>
2802
+
2803
+ <hr />
2804
+
2805
+ <h3> Cumque quam ipsum sed voluptate beatae eum qui maiores. </h3>
2806
+
2807
+ <p>Omnis est dolores quia dicta consequuntur. Et esse incidunt veritatis pariatur omnis ut ipsa. Aut vitae quo est nostrum amet molestiae ipsum facere. Expedita accusantium similique placeat omnis omnis labore eius.</p>
2808
+
2809
+ <br />
2810
+ <hr />
2811
+
2812
+ <p> Please respond to Ramon Ward as soon as possible. </p>
2813
+  (0.1ms) rollback transaction
2814
+  (0.0ms) begin transaction
2815
+
2816
+ Sent mail to test@example.com (12.3ms)
2817
+ Date: Sun, 24 Nov 2013 10:36:15 -0700
2818
+ From: halle_lesch@farrellcollins.ca
2819
+ To: test@example.com
2820
+ Cc: cc_me@example.com,
2821
+ cc_me2@example.com
2822
+ Message-ID: <5292390f4d94f_758c3fd6dcc5e6d848687@Bens-MacBook-Pro.local.mail>
2823
+ Subject: [Simple Contact] Quos doloremque eum molestiae ut.
2824
+ Mime-Version: 1.0
2825
+ Content-Type: text/html;
2826
+ charset=UTF-8
2827
+ Content-Transfer-Encoding: 7bit
2828
+
2829
+ <h3> You've received a new message from: <a href="mailto:halle_lesch@farrellcollins.ca">Ms. Ezra Osinski</a> </h3>
2830
+
2831
+ <hr />
2832
+
2833
+ <h3> Quos doloremque eum molestiae ut. </h3>
2834
+
2835
+ <p>Dolores fugit tempora maxime blanditiis. Et nihil quidem quia voluptatem. Porro quasi officiis ipsam quae non atque temporibus omnis.</p>
2836
+
2837
+ <br />
2838
+ <hr />
2839
+
2840
+ <p> Please respond to Ms. Ezra Osinski as soon as possible. </p>
2841
+  (0.1ms) rollback transaction
2842
+  (0.0ms) begin transaction
2843
+
2844
+ Sent mail to test@example.com (12.4ms)
2845
+ Date: Sun, 24 Nov 2013 10:36:15 -0700
2846
+ From: lela@zboncakstanton.info
2847
+ To: test@example.com
2848
+ Cc: cc_me@example.com,
2849
+ cc_me2@example.com
2850
+ Message-ID: <5292390f5479f_758c3fd6dcc5e6d8487a0@Bens-MacBook-Pro.local.mail>
2851
+ Subject: [Simple Contact] Maxime molestias doloribus dolor in.
2852
+ Mime-Version: 1.0
2853
+ Content-Type: text/html;
2854
+ charset=UTF-8
2855
+ Content-Transfer-Encoding: 7bit
2856
+
2857
+ <h3> You've received a new message from: <a href="mailto:lela@zboncakstanton.info">Nat Walter</a> </h3>
2858
+
2859
+ <hr />
2860
+
2861
+ <h3> Maxime molestias doloribus dolor in. </h3>
2862
+
2863
+ <p>Corporis natus sequi est dignissimos ullam. Quia consequatur aut qui. Delectus maxime quis facere.</p>
2864
+
2865
+ <br />
2866
+ <hr />
2867
+
2868
+ <p> Please respond to Nat Walter as soon as possible. </p>
2869
+  (0.1ms) rollback transaction
2870
+  (0.0ms) begin transaction
2871
+  (0.0ms) rollback transaction
2872
+  (0.0ms) begin transaction
2873
+  (0.0ms) rollback transaction
2874
+  (0.0ms) begin transaction
2875
+  (0.0ms) rollback transaction
2876
+  (0.0ms) begin transaction
2877
+  (0.0ms) rollback transaction
2878
+  (0.0ms) begin transaction
2879
+  (0.0ms) rollback transaction
2880
+  (0.0ms) begin transaction
2881
+  (0.0ms) rollback transaction
2882
+  (0.0ms) begin transaction
2883
+  (0.0ms) rollback transaction
2884
+ Connecting to database specified by database.yml
2885
+  (0.2ms) begin transaction
2886
+ Processing by HomeController#index as HTML
2887
+ Rendered home/index.html.erb within layouts/application (0.8ms)
2888
+ Completed 200 OK in 6.4ms (Views: 6.1ms | ActiveRecord: 0.0ms)
2889
+  (0.0ms) rollback transaction
2890
+  (0.0ms) begin transaction
2891
+  (0.0ms) rollback transaction
2892
+  (0.0ms) begin transaction
2893
+ Processing by SimpleContact::ContactController#new as HTML
2894
+ Completed 200 OK in 6.6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
2895
+  (0.0ms) rollback transaction
2896
+  (0.0ms) begin transaction
2897
+ Processing by SimpleContact::ContactController#create as HTML
2898
+ Parameters: {"message"=>{"body"=>"Dicta aut quia harum. Deserunt aspernatur nihil incidunt nisi nostrum voluptatem voluptas minus. Impedit et quos odit vitae enim facere doloremque tempore.", "email"=>nil, "name"=>"Reyna Wunsch", "subject"=>"Velit distinctio asperiores omnis deserunt enim magnam repellat ipsa."}}
2899
+ Completed 200 OK in 4.8ms (Views: 3.4ms | ActiveRecord: 0.0ms)
2900
+  (0.1ms) rollback transaction
2901
+  (0.0ms) begin transaction
2902
+ Processing by SimpleContact::ContactController#create as HTML
2903
+ Parameters: {"message"=>{"body"=>"Assumenda rerum consequatur dolorem consequatur magnam sed. Accusamus repellat ab quae est. Quaerat nostrum id hic.", "email"=>"jett@russelzieme.info", "name"=>"Karine Fay", "subject"=>"Sunt nam recusandae corrupti ut placeat beatae omnis."}}
2904
+
2905
+ Sent mail to test@gmail.com (9.0ms)
2906
+ Date: Sun, 24 Nov 2013 10:36:31 -0700
2907
+ From: jett@russelzieme.info
2908
+ To: test@gmail.com
2909
+ Message-ID: <5292391faf578_75ae3fe2d185e6cc3219@Bens-MacBook-Pro.local.mail>
2910
+ Subject: [Simple Contact] Sunt nam recusandae corrupti ut placeat beatae
2911
+ omnis.
2912
+ Mime-Version: 1.0
2913
+ Content-Type: text/html;
2914
+ charset=UTF-8
2915
+ Content-Transfer-Encoding: 7bit
2916
+
2917
+ <h3> You've received a new message from: <a href="mailto:jett@russelzieme.info">Karine Fay</a> </h3>
2918
+
2919
+ <hr />
2920
+
2921
+ <h3> Sunt nam recusandae corrupti ut placeat beatae omnis. </h3>
2922
+
2923
+ <p>Assumenda rerum consequatur dolorem consequatur magnam sed. Accusamus repellat ab quae est. Quaerat nostrum id hic.</p>
2924
+
2925
+ <br />
2926
+ <hr />
2927
+
2928
+ <p> Please respond to Karine Fay as soon as possible. </p>
2929
+ Redirected to http://test.host/
2930
+ Completed 302 Found in 23.8ms (ActiveRecord: 0.0ms)
2931
+  (0.1ms) rollback transaction
2932
+  (0.0ms) begin transaction
2933
+
2934
+ Sent mail to test@example.com (11.8ms)
2935
+ Date: Sun, 24 Nov 2013 10:36:31 -0700
2936
+ From: leone@wiegand.info
2937
+ To: test@example.com
2938
+ Cc: cc_me@example.com,
2939
+ cc_me2@example.com
2940
+ Message-ID: <5292391fbbcbd_75ae3fe2d185e6cc33b2@Bens-MacBook-Pro.local.mail>
2941
+ Subject: [Simple Contact] Tenetur voluptas debitis fugiat.
2942
+ Mime-Version: 1.0
2943
+ Content-Type: text/html;
2944
+ charset=UTF-8
2945
+ Content-Transfer-Encoding: 7bit
2946
+
2947
+ <h3> You've received a new message from: <a href="mailto:leone@wiegand.info">Dr. Myrtis Kirlin</a> </h3>
2948
+
2949
+ <hr />
2950
+
2951
+ <h3> Tenetur voluptas debitis fugiat. </h3>
2952
+
2953
+ <p>Cumque suscipit ea animi illo dolores quam. Quisquam ut itaque dolorem est. Placeat minima error cumque vitae nulla libero ex. Ex voluptas amet quaerat et dolore ea quisquam.</p>
2954
+
2955
+ <br />
2956
+ <hr />
2957
+
2958
+ <p> Please respond to Dr. Myrtis Kirlin as soon as possible. </p>
2959
+  (0.1ms) rollback transaction
2960
+  (0.0ms) begin transaction
2961
+
2962
+ Sent mail to test@example.com (11.3ms)
2963
+ Date: Sun, 24 Nov 2013 10:36:31 -0700
2964
+ From: chelsey@toy.us
2965
+ To: test@example.com
2966
+ Cc: cc_me@example.com,
2967
+ cc_me2@example.com
2968
+ Message-ID: <5292391fc27e7_75ae3fe2d185e6cc3449@Bens-MacBook-Pro.local.mail>
2969
+ Subject: [Simple Contact] Quibusdam expedita corporis quis illo et iste
2970
+ voluptatem iure.
2971
+ Mime-Version: 1.0
2972
+ Content-Type: text/html;
2973
+ charset=UTF-8
2974
+ Content-Transfer-Encoding: 7bit
2975
+
2976
+ <h3> You've received a new message from: <a href="mailto:chelsey@toy.us">Miss Israel Kuhlman</a> </h3>
2977
+
2978
+ <hr />
2979
+
2980
+ <h3> Quibusdam expedita corporis quis illo et iste voluptatem iure. </h3>
2981
+
2982
+ <p>Unde tempore et dolorem. Est doloribus incidunt repellendus sequi. Dolorum voluptatem deserunt ut. Molestiae autem tempora explicabo sunt placeat.</p>
2983
+
2984
+ <br />
2985
+ <hr />
2986
+
2987
+ <p> Please respond to Miss Israel Kuhlman as soon as possible. </p>
2988
+  (0.0ms) rollback transaction
2989
+  (0.0ms) begin transaction
2990
+
2991
+ Sent mail to test@example.com (12.0ms)
2992
+ Date: Sun, 24 Nov 2013 10:36:31 -0700
2993
+ From: rosamond_fay@fritsch.name
2994
+ To: test@example.com
2995
+ Cc: cc_me@example.com,
2996
+ cc_me2@example.com
2997
+ Message-ID: <5292391fc9119_75ae3fe2d185e6cc35d0@Bens-MacBook-Pro.local.mail>
2998
+ Subject: [Simple Contact] In est repudiandae laborum non veniam harum.
2999
+ Mime-Version: 1.0
3000
+ Content-Type: text/html;
3001
+ charset=UTF-8
3002
+ Content-Transfer-Encoding: 7bit
3003
+
3004
+ <h3> You've received a new message from: <a href="mailto:rosamond_fay@fritsch.name">Dakota Medhurst</a> </h3>
3005
+
3006
+ <hr />
3007
+
3008
+ <h3> In est repudiandae laborum non veniam harum. </h3>
3009
+
3010
+ <p>Esse dolor minima est adipisci. Placeat aspernatur voluptas tempore nihil consequatur. Nihil esse suscipit qui quam corrupti.</p>
3011
+
3012
+ <br />
3013
+ <hr />
3014
+
3015
+ <p> Please respond to Dakota Medhurst as soon as possible. </p>
3016
+  (0.1ms) rollback transaction
3017
+  (0.0ms) begin transaction
3018
+  (0.0ms) rollback transaction
3019
+  (0.0ms) begin transaction
3020
+  (0.0ms) rollback transaction
3021
+  (0.0ms) begin transaction
3022
+  (0.0ms) rollback transaction
3023
+  (0.0ms) begin transaction
3024
+  (0.0ms) rollback transaction
3025
+  (0.0ms) begin transaction
3026
+  (0.0ms) rollback transaction
3027
+  (0.0ms) begin transaction
3028
+  (0.0ms) rollback transaction
3029
+  (0.0ms) begin transaction
3030
+  (0.0ms) rollback transaction
3031
+ Connecting to database specified by database.yml
3032
+  (0.2ms) begin transaction
3033
+ Processing by HomeController#index as HTML
3034
+ Rendered home/index.html.erb within layouts/application (0.7ms)
3035
+ Completed 200 OK in 6.3ms (Views: 6.1ms | ActiveRecord: 0.0ms)
3036
+  (0.0ms) rollback transaction
3037
+  (0.0ms) begin transaction
3038
+  (0.0ms) rollback transaction
3039
+  (0.0ms) begin transaction
3040
+ Processing by SimpleContact::ContactController#new as HTML
3041
+ Completed 200 OK in 6.7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
3042
+  (0.0ms) rollback transaction
3043
+  (0.0ms) begin transaction
3044
+ Processing by SimpleContact::ContactController#create as HTML
3045
+ Parameters: {"message"=>{"body"=>"Ut sed similique sed atque voluptas ut quis sit. Et debitis sint maxime labore. Atque magni eaque quisquam.", "email"=>nil, "name"=>"Jackeline Bruen", "subject"=>"Odio aut saepe qui."}}
3046
+ Completed 200 OK in 4.5ms (Views: 3.2ms | ActiveRecord: 0.0ms)
3047
+  (0.1ms) rollback transaction
3048
+  (0.0ms) begin transaction
3049
+ Processing by SimpleContact::ContactController#create as HTML
3050
+ Parameters: {"message"=>{"body"=>"Eveniet at voluptatem temporibus et beatae enim voluptates. Id voluptatibus labore similique. Iure nesciunt rem quisquam consequatur velit provident numquam.", "email"=>"giovanni@heidenreich.name", "name"=>"Issac Harris Sr.", "subject"=>"Illum animi quidem repellat ab corporis excepturi."}}
3051
+
3052
+ Sent mail to test@gmail.com (9.6ms)
3053
+ Date: Sun, 24 Nov 2013 10:37:20 -0700
3054
+ From: giovanni@heidenreich.name
3055
+ To: test@gmail.com
3056
+ Message-ID: <5292395086879_75d33fd46085e6d86108a@Bens-MacBook-Pro.local.mail>
3057
+ Subject: [Simple Contact] Illum animi quidem repellat ab corporis excepturi.
3058
+ Mime-Version: 1.0
3059
+ Content-Type: text/html;
3060
+ charset=UTF-8
3061
+ Content-Transfer-Encoding: 7bit
3062
+
3063
+ <h3> You've received a new message from: <a href="mailto:giovanni@heidenreich.name">Issac Harris Sr.</a> </h3>
3064
+
3065
+ <hr />
3066
+
3067
+ <h3> Illum animi quidem repellat ab corporis excepturi. </h3>
3068
+
3069
+ <p>Eveniet at voluptatem temporibus et beatae enim voluptates. Id voluptatibus labore similique. Iure nesciunt rem quisquam consequatur velit provident numquam.</p>
3070
+
3071
+ <br />
3072
+ <hr />
3073
+
3074
+ <p> Please respond to Issac Harris Sr. as soon as possible. </p>
3075
+ Redirected to http://test.host/
3076
+ Completed 302 Found in 24.6ms (ActiveRecord: 0.0ms)
3077
+  (0.1ms) rollback transaction
3078
+  (0.0ms) begin transaction
3079
+
3080
+ Sent mail to test@example.com (12.3ms)
3081
+ Date: Sun, 24 Nov 2013 10:37:20 -0700
3082
+ From: albertha_cruickshank@ernser.us
3083
+ To: test@example.com
3084
+ Cc: cc_me@example.com,
3085
+ cc_me2@example.com
3086
+ Message-ID: <529239509337d_75d33fd46085e6d8611b4@Bens-MacBook-Pro.local.mail>
3087
+ Subject: [Simple Contact] Quaerat voluptates dolores necessitatibus.
3088
+ Mime-Version: 1.0
3089
+ Content-Type: text/html;
3090
+ charset=UTF-8
3091
+ Content-Transfer-Encoding: 7bit
3092
+
3093
+ <h3> You've received a new message from: <a href="mailto:albertha_cruickshank@ernser.us">Cruz Steuber I</a> </h3>
3094
+
3095
+ <hr />
3096
+
3097
+ <h3> Quaerat voluptates dolores necessitatibus. </h3>
3098
+
3099
+ <p>Dolorum cum voluptas doloremque blanditiis quas. Ab consequatur libero tempora. Repellendus dolor error optio velit soluta impedit voluptatibus.</p>
3100
+
3101
+ <br />
3102
+ <hr />
3103
+
3104
+ <p> Please respond to Cruz Steuber I as soon as possible. </p>
3105
+  (0.1ms) rollback transaction
3106
+  (0.0ms) begin transaction
3107
+
3108
+ Sent mail to test@example.com (12.3ms)
3109
+ Date: Sun, 24 Nov 2013 10:37:20 -0700
3110
+ From: nelle@ritchie.co.uk
3111
+ To: test@example.com
3112
+ Cc: cc_me@example.com,
3113
+ cc_me2@example.com
3114
+ Message-ID: <529239509a0b2_75d33fd46085e6d86122e@Bens-MacBook-Pro.local.mail>
3115
+ Subject: [Simple Contact] Nulla voluptatem et est deserunt at deleniti.
3116
+ Mime-Version: 1.0
3117
+ Content-Type: text/html;
3118
+ charset=UTF-8
3119
+ Content-Transfer-Encoding: 7bit
3120
+
3121
+ <h3> You've received a new message from: <a href="mailto:nelle@ritchie.co.uk">Arno Nader</a> </h3>
3122
+
3123
+ <hr />
3124
+
3125
+ <h3> Nulla voluptatem et est deserunt at deleniti. </h3>
3126
+
3127
+ <p>Perferendis nihil qui ut qui. Hic reprehenderit est rerum architecto eveniet ut nihil et. Corporis ullam in voluptatem officia ex est. Atque dolore iure et odio repellendus reiciendis. Vel ut excepturi quis necessitatibus soluta alias aut.</p>
3128
+
3129
+ <br />
3130
+ <hr />
3131
+
3132
+ <p> Please respond to Arno Nader as soon as possible. </p>
3133
+  (0.0ms) rollback transaction
3134
+  (0.0ms) begin transaction
3135
+
3136
+ Sent mail to test@example.com (11.7ms)
3137
+ Date: Sun, 24 Nov 2013 10:37:20 -0700
3138
+ From: trisha@steuber.co.uk
3139
+ To: test@example.com
3140
+ Cc: cc_me@example.com,
3141
+ cc_me2@example.com
3142
+ Message-ID: <52923950a0ea1_75d33fd46085e6d861340@Bens-MacBook-Pro.local.mail>
3143
+ Subject: [Simple Contact] Rerum aliquid totam sed tempore.
3144
+ Mime-Version: 1.0
3145
+ Content-Type: text/html;
3146
+ charset=UTF-8
3147
+ Content-Transfer-Encoding: 7bit
3148
+
3149
+ <h3> You've received a new message from: <a href="mailto:trisha@steuber.co.uk">Kathryn Spinka</a> </h3>
3150
+
3151
+ <hr />
3152
+
3153
+ <h3> Rerum aliquid totam sed tempore. </h3>
3154
+
3155
+ <p>Rerum distinctio neque quibusdam. Quasi ut impedit recusandae perspiciatis saepe odit earum eum. In ut adipisci blanditiis eos rem quis nihil aut. Nobis sunt sit voluptates dolor corporis et consequatur at.</p>
3156
+
3157
+ <br />
3158
+ <hr />
3159
+
3160
+ <p> Please respond to Kathryn Spinka as soon as possible. </p>
3161
+  (0.1ms) rollback transaction
3162
+  (0.0ms) begin transaction
3163
+  (0.0ms) rollback transaction
3164
+  (0.0ms) begin transaction
3165
+  (0.0ms) rollback transaction
3166
+  (0.0ms) begin transaction
3167
+  (0.0ms) rollback transaction
3168
+  (0.0ms) begin transaction
3169
+  (0.0ms) rollback transaction
3170
+  (0.0ms) begin transaction
3171
+  (0.0ms) rollback transaction
3172
+  (0.0ms) begin transaction
3173
+  (0.0ms) rollback transaction
3174
+  (0.0ms) begin transaction
3175
+  (0.0ms) rollback transaction
3176
+ Connecting to database specified by database.yml
3177
+  (0.2ms) begin transaction
3178
+ Processing by HomeController#index as HTML
3179
+ Rendered home/index.html.erb within layouts/application (0.7ms)
3180
+ Completed 200 OK in 6.2ms (Views: 6.0ms | ActiveRecord: 0.0ms)
3181
+  (0.0ms) rollback transaction
3182
+  (0.0ms) begin transaction
3183
+  (0.0ms) rollback transaction
3184
+  (0.0ms) begin transaction
3185
+ Processing by SimpleContact::ContactController#new as HTML
3186
+ Completed 200 OK in 6.7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
3187
+  (0.1ms) rollback transaction
3188
+  (0.0ms) begin transaction
3189
+ Processing by SimpleContact::ContactController#create as HTML
3190
+ Parameters: {"message"=>{"body"=>"Id eaque sunt pariatur illo debitis necessitatibus cupiditate rerum. Impedit aut voluptatibus maxime et. Numquam voluptatem nemo et molestias id maxime. Sed sit et molestiae non nihil omnis.", "email"=>nil, "name"=>"Travis Collier", "subject"=>"Quaerat reprehenderit voluptas quas est magni est quis."}}
3191
+ Completed 200 OK in 4.5ms (Views: 3.2ms | ActiveRecord: 0.0ms)
3192
+  (0.0ms) rollback transaction
3193
+  (0.0ms) begin transaction
3194
+ Processing by SimpleContact::ContactController#create as HTML
3195
+ Parameters: {"message"=>{"body"=>"Vitae numquam ea quas eius in sunt corrupti doloremque. Vitae ut quis dolor a aliquid atque facere. Quia molestiae minus praesentium.", "email"=>"kylee.fritsch@schneider.info", "name"=>"Caterina Gislason", "subject"=>"Beatae qui ut vel animi dolores dolores suscipit quaerat."}}
3196
+
3197
+ Sent mail to test@gmail.com (9.1ms)
3198
+ Date: Sun, 24 Nov 2013 10:37:41 -0700
3199
+ From: kylee.fritsch@schneider.info
3200
+ To: test@gmail.com
3201
+ Message-ID: <52923965b6599_75f33fdd60c5e6d04626@Bens-MacBook-Pro.local.mail>
3202
+ Subject: [Simple Contact] Beatae qui ut vel animi dolores dolores suscipit
3203
+ quaerat.
3204
+ Mime-Version: 1.0
3205
+ Content-Type: text/html;
3206
+ charset=UTF-8
3207
+ Content-Transfer-Encoding: 7bit
3208
+
3209
+ <h3> You've received a new message from: <a href="mailto:kylee.fritsch@schneider.info">Caterina Gislason</a> </h3>
3210
+
3211
+ <hr />
3212
+
3213
+ <h3> Beatae qui ut vel animi dolores dolores suscipit quaerat. </h3>
3214
+
3215
+ <p>Vitae numquam ea quas eius in sunt corrupti doloremque. Vitae ut quis dolor a aliquid atque facere. Quia molestiae minus praesentium.</p>
3216
+
3217
+ <br />
3218
+ <hr />
3219
+
3220
+ <p> Please respond to Caterina Gislason as soon as possible. </p>
3221
+ Redirected to http://test.host/
3222
+ Completed 302 Found in 24.6ms (ActiveRecord: 0.0ms)
3223
+  (0.1ms) rollback transaction
3224
+  (0.1ms) begin transaction
3225
+
3226
+ Sent mail to test@example.com (11.8ms)
3227
+ Date: Sun, 24 Nov 2013 10:37:41 -0700
3228
+ From: shaylee.fisher@rau.us
3229
+ To: test@example.com
3230
+ Cc: cc_me@example.com,
3231
+ cc_me2@example.com
3232
+ Message-ID: <52923965c499c_75f33fdd60c5e6d0463a8@Bens-MacBook-Pro.local.mail>
3233
+ Subject: [Simple Contact] Eum quis reprehenderit est omnis.
3234
+ Mime-Version: 1.0
3235
+ Content-Type: text/html;
3236
+ charset=UTF-8
3237
+ Content-Transfer-Encoding: 7bit
3238
+
3239
+ <h3> You've received a new message from: <a href="mailto:shaylee.fisher@rau.us">Ms. Delphia Hodkiewicz</a> </h3>
3240
+
3241
+ <hr />
3242
+
3243
+ <h3> Eum quis reprehenderit est omnis. </h3>
3244
+
3245
+ <p>Sit tempore enim expedita accusantium. Architecto aut et voluptatibus et. Fugiat soluta aperiam temporibus ea sequi quidem ipsum.</p>
3246
+
3247
+ <br />
3248
+ <hr />
3249
+
3250
+ <p> Please respond to Ms. Delphia Hodkiewicz as soon as possible. </p>
3251
+  (0.1ms) rollback transaction
3252
+  (0.0ms) begin transaction
3253
+
3254
+ Sent mail to test@example.com (11.9ms)
3255
+ Date: Sun, 24 Nov 2013 10:37:41 -0700
3256
+ From: adeline.labadie@kovacek.biz
3257
+ To: test@example.com
3258
+ Cc: cc_me@example.com,
3259
+ cc_me2@example.com
3260
+ Message-ID: <52923965cb5be_75f33fdd60c5e6d04647c@Bens-MacBook-Pro.local.mail>
3261
+ Subject: [Simple Contact] Autem illum doloribus iste placeat rem.
3262
+ Mime-Version: 1.0
3263
+ Content-Type: text/html;
3264
+ charset=UTF-8
3265
+ Content-Transfer-Encoding: 7bit
3266
+
3267
+ <h3> You've received a new message from: <a href="mailto:adeline.labadie@kovacek.biz">Eldora Mills MD</a> </h3>
3268
+
3269
+ <hr />
3270
+
3271
+ <h3> Autem illum doloribus iste placeat rem. </h3>
3272
+
3273
+ <p>Quas facere et omnis reiciendis esse. Molestias ipsa dignissimos quod et. Sint quis commodi tempore quidem aut voluptatem nemo.</p>
3274
+
3275
+ <br />
3276
+ <hr />
3277
+
3278
+ <p> Please respond to Eldora Mills MD as soon as possible. </p>
3279
+  (0.1ms) rollback transaction
3280
+  (0.0ms) begin transaction
3281
+
3282
+ Sent mail to test@example.com (13.3ms)
3283
+ Date: Sun, 24 Nov 2013 10:37:41 -0700
3284
+ From: vince.heidenreich@mcdermott.com
3285
+ To: test@example.com
3286
+ Cc: cc_me@example.com,
3287
+ cc_me2@example.com
3288
+ Message-ID: <52923965d247e_75f33fdd60c5e6d046553@Bens-MacBook-Pro.local.mail>
3289
+ Subject: [Simple Contact] Earum eaque adipisci neque optio quia omnis quo
3290
+ animi.
3291
+ Mime-Version: 1.0
3292
+ Content-Type: text/html;
3293
+ charset=UTF-8
3294
+ Content-Transfer-Encoding: 7bit
3295
+
3296
+ <h3> You've received a new message from: <a href="mailto:vince.heidenreich@mcdermott.com">Nikko Gottlieb</a> </h3>
3297
+
3298
+ <hr />
3299
+
3300
+ <h3> Earum eaque adipisci neque optio quia omnis quo animi. </h3>
3301
+
3302
+ <p>Soluta magni occaecati veniam explicabo sed. Velit a accusamus corrupti doloremque rerum maxime praesentium. Quo eius ea maxime excepturi explicabo et aliquid sapiente. Atque non ullam eos debitis doloribus. Illum aut in quod perspiciatis odit et aut.</p>
3303
+
3304
+ <br />
3305
+ <hr />
3306
+
3307
+ <p> Please respond to Nikko Gottlieb as soon as possible. </p>
3308
+  (0.1ms) rollback transaction
3309
+  (0.0ms) begin transaction
3310
+  (0.0ms) rollback transaction
3311
+  (0.0ms) begin transaction
3312
+  (0.0ms) rollback transaction
3313
+  (0.0ms) begin transaction
3314
+  (0.0ms) rollback transaction
3315
+  (0.0ms) begin transaction
3316
+  (0.0ms) rollback transaction
3317
+  (0.0ms) begin transaction
3318
+  (0.0ms) rollback transaction
3319
+  (0.0ms) begin transaction
3320
+  (0.0ms) rollback transaction
3321
+  (0.0ms) begin transaction
3322
+  (0.0ms) rollback transaction
3323
+ Connecting to database specified by database.yml
3324
+  (0.2ms) begin transaction
3325
+ Processing by HomeController#index as HTML
3326
+ Rendered home/index.html.erb within layouts/application (0.8ms)
3327
+ Completed 200 OK in 6.7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
3328
+  (0.0ms) rollback transaction
3329
+  (0.0ms) begin transaction
3330
+  (0.0ms) rollback transaction
3331
+  (0.0ms) begin transaction
3332
+ Processing by SimpleContact::ContactController#new as HTML
3333
+ Completed 200 OK in 6.7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
3334
+  (0.0ms) rollback transaction
3335
+  (0.0ms) begin transaction
3336
+ Processing by SimpleContact::ContactController#create as HTML
3337
+ Parameters: {"message"=>{"body"=>"Aut et aspernatur repellat ullam voluptas doloremque consequuntur. Saepe dolorem eos aspernatur qui voluptatem expedita autem. Maiores nostrum excepturi amet.", "email"=>nil, "name"=>"Glen Emard", "subject"=>"Voluptate magni id quidem distinctio illum."}}
3338
+ Completed 200 OK in 4.5ms (Views: 3.2ms | ActiveRecord: 0.0ms)
3339
+  (0.0ms) rollback transaction
3340
+  (0.0ms) begin transaction
3341
+ Processing by SimpleContact::ContactController#create as HTML
3342
+ Parameters: {"message"=>{"body"=>"Vitae unde optio aliquid vero et tempore. Ut quia mollitia consequatur rerum omnis aut ut. Accusamus blanditiis quia nihil voluptatem et recusandae repellendus. Voluptas quod impedit cumque.", "email"=>"audra@gerlach.co.uk", "name"=>"Ernest Walter", "subject"=>"Ullam et similique voluptatibus molestias assumenda eum dolorum."}}
3343
+
3344
+ Sent mail to test@gmail.com (9.1ms)
3345
+ Date: Sun, 24 Nov 2013 10:38:24 -0700
3346
+ From: audra@gerlach.co.uk
3347
+ To: test@gmail.com
3348
+ Message-ID: <52923990a0cee_76183fbff8c5e6d8939b6@Bens-MacBook-Pro.local.mail>
3349
+ Subject: [Simple Contact] Ullam et similique voluptatibus molestias assumenda
3350
+ eum dolorum.
3351
+ Mime-Version: 1.0
3352
+ Content-Type: text/html;
3353
+ charset=UTF-8
3354
+ Content-Transfer-Encoding: 7bit
3355
+
3356
+ <h3> You've received a new message from: <a href="mailto:audra@gerlach.co.uk">Ernest Walter</a> </h3>
3357
+
3358
+ <hr />
3359
+
3360
+ <h3> Ullam et similique voluptatibus molestias assumenda eum dolorum. </h3>
3361
+
3362
+ <p>Vitae unde optio aliquid vero et tempore. Ut quia mollitia consequatur rerum omnis aut ut. Accusamus blanditiis quia nihil voluptatem et recusandae repellendus. Voluptas quod impedit cumque.</p>
3363
+
3364
+ <br />
3365
+ <hr />
3366
+
3367
+ <p> Please respond to Ernest Walter as soon as possible. </p>
3368
+ Redirected to http://test.host/
3369
+ Completed 302 Found in 24.3ms (ActiveRecord: 0.0ms)
3370
+  (0.1ms) rollback transaction
3371
+  (0.0ms) begin transaction
3372
+
3373
+ Sent mail to test@example.com, test2@example.com (13.3ms)
3374
+ Date: Sun, 24 Nov 2013 10:38:24 -0700
3375
+ From: keon@funk.com
3376
+ To: test@example.com,
3377
+ test2@example.com
3378
+ Cc: cc_me@example.com,
3379
+ cc_me2@example.com
3380
+ Message-ID: <52923990ada49_76183fbff8c5e6d8940f3@Bens-MacBook-Pro.local.mail>
3381
+ Subject: [Simple Contact] Qui repudiandae eveniet quia sed explicabo quia
3382
+ reprehenderit.
3383
+ Mime-Version: 1.0
3384
+ Content-Type: text/html;
3385
+ charset=UTF-8
3386
+ Content-Transfer-Encoding: 7bit
3387
+
3388
+ <h3> You've received a new message from: <a href="mailto:keon@funk.com">Baylee Lebsack</a> </h3>
3389
+
3390
+ <hr />
3391
+
3392
+ <h3> Qui repudiandae eveniet quia sed explicabo quia reprehenderit. </h3>
3393
+
3394
+ <p>Numquam ipsa deserunt ut repellat minus sit. Autem non adipisci eos ut doloremque porro tempore. Omnis id eos velit. Numquam maxime architecto quae expedita error ea blanditiis.</p>
3395
+
3396
+ <br />
3397
+ <hr />
3398
+
3399
+ <p> Please respond to Baylee Lebsack as soon as possible. </p>
3400
+  (0.1ms) rollback transaction
3401
+  (0.0ms) begin transaction
3402
+
3403
+ Sent mail to test@example.com, test2@example.com (13.4ms)
3404
+ Date: Sun, 24 Nov 2013 10:38:24 -0700
3405
+ From: sophia@reingerhuel.co.uk
3406
+ To: test@example.com,
3407
+ test2@example.com
3408
+ Cc: cc_me@example.com,
3409
+ cc_me2@example.com
3410
+ Message-ID: <52923990b51e0_76183fbff8c5e6d894113@Bens-MacBook-Pro.local.mail>
3411
+ Subject: [Simple Contact] Rem autem exercitationem qui est ipsam.
3412
+ Mime-Version: 1.0
3413
+ Content-Type: text/html;
3414
+ charset=UTF-8
3415
+ Content-Transfer-Encoding: 7bit
3416
+
3417
+ <h3> You've received a new message from: <a href="mailto:sophia@reingerhuel.co.uk">Josue Lindgren</a> </h3>
3418
+
3419
+ <hr />
3420
+
3421
+ <h3> Rem autem exercitationem qui est ipsam. </h3>
3422
+
3423
+ <p>Aut ut minus aut adipisci. Id mollitia ducimus consequatur rerum inventore laborum maiores. Accusantium praesentium magni et atque enim et. Veritatis modi qui voluptas non consequatur aut nisi provident.</p>
3424
+
3425
+ <br />
3426
+ <hr />
3427
+
3428
+ <p> Please respond to Josue Lindgren as soon as possible. </p>
3429
+  (0.0ms) rollback transaction
3430
+  (0.0ms) begin transaction
3431
+
3432
+ Sent mail to test@example.com, test2@example.com (13.3ms)
3433
+ Date: Sun, 24 Nov 2013 10:38:24 -0700
3434
+ From: garnet_mills@beatty.name
3435
+ To: test@example.com,
3436
+ test2@example.com
3437
+ Cc: cc_me@example.com,
3438
+ cc_me2@example.com
3439
+ Message-ID: <52923990bc82e_76183fbff8c5e6d894225@Bens-MacBook-Pro.local.mail>
3440
+ Subject: [Simple Contact] Omnis aut deserunt consequuntur inventore sequi
3441
+ neque assumenda.
3442
+ Mime-Version: 1.0
3443
+ Content-Type: text/html;
3444
+ charset=UTF-8
3445
+ Content-Transfer-Encoding: 7bit
3446
+
3447
+ <h3> You've received a new message from: <a href="mailto:garnet_mills@beatty.name">Sigurd Conroy</a> </h3>
3448
+
3449
+ <hr />
3450
+
3451
+ <h3> Omnis aut deserunt consequuntur inventore sequi neque assumenda. </h3>
3452
+
3453
+ <p>Nam possimus asperiores molestiae dignissimos consectetur molestiae rem quis. Autem quisquam nulla deserunt quia. Qui a eum qui quis iure fugiat id inventore. Sint occaecati soluta non voluptas consequatur.</p>
3454
+
3455
+ <br />
3456
+ <hr />
3457
+
3458
+ <p> Please respond to Sigurd Conroy as soon as possible. </p>
3459
+  (0.1ms) rollback transaction
3460
+  (0.0ms) begin transaction
3461
+  (0.0ms) rollback transaction
3462
+  (0.0ms) begin transaction
3463
+  (0.0ms) rollback transaction
3464
+  (0.0ms) begin transaction
3465
+  (0.0ms) rollback transaction
3466
+  (0.0ms) begin transaction
3467
+  (0.0ms) rollback transaction
3468
+  (0.0ms) begin transaction
3469
+  (0.0ms) rollback transaction
3470
+  (0.0ms) begin transaction
3471
+  (0.0ms) rollback transaction
3472
+  (0.0ms) begin transaction
3473
+  (0.0ms) rollback transaction
3474
+ Connecting to database specified by database.yml
3475
+  (0.2ms) begin transaction
3476
+ Processing by HomeController#index as HTML
3477
+ Rendered home/index.html.erb within layouts/application (0.8ms)
3478
+ Completed 200 OK in 6.3ms (Views: 6.1ms | ActiveRecord: 0.0ms)
3479
+  (0.0ms) rollback transaction
3480
+  (0.0ms) begin transaction
3481
+  (0.0ms) rollback transaction
3482
+  (0.0ms) begin transaction
3483
+ Processing by SimpleContact::ContactController#new as HTML
3484
+ Completed 200 OK in 6.6ms (Views: 6.4ms | ActiveRecord: 0.0ms)
3485
+  (0.1ms) rollback transaction
3486
+  (0.0ms) begin transaction
3487
+ Processing by SimpleContact::ContactController#create as HTML
3488
+ Parameters: {"message"=>{"body"=>"Et rem pariatur commodi et ipsa aut. Minus debitis distinctio autem sit asperiores blanditiis incidunt. Sit sed est rem delectus quidem adipisci sed. Est voluptatem est et non debitis. Quo quia optio excepturi commodi aut ex animi.", "email"=>nil, "name"=>"Breanna White", "subject"=>"Ut est ex debitis quis qui optio necessitatibus."}}
3489
+ Completed 200 OK in 4.6ms (Views: 3.3ms | ActiveRecord: 0.0ms)
3490
+  (0.1ms) rollback transaction
3491
+  (0.0ms) begin transaction
3492
+ Processing by SimpleContact::ContactController#create as HTML
3493
+ Parameters: {"message"=>{"body"=>"Et neque omnis odit dolores ullam et animi quae. Dolores quisquam quis quae. Est quisquam dolore illo doloribus ea.", "email"=>"odell_wiegand@green.com", "name"=>"Mr. Pierre Stroman", "subject"=>"Aliquid dolorem a fugiat repellat vel sed."}}
3494
+
3495
+ Sent mail to test@gmail.com (9.3ms)
3496
+ Date: Sun, 24 Nov 2013 10:38:36 -0700
3497
+ From: odell_wiegand@green.com
3498
+ To: test@gmail.com
3499
+ Message-ID: <5292399c65f4f_76353fc9dc85e6d0146c7@Bens-MacBook-Pro.local.mail>
3500
+ Subject: [Simple Contact] Aliquid dolorem a fugiat repellat vel sed.
3501
+ Mime-Version: 1.0
3502
+ Content-Type: text/html;
3503
+ charset=UTF-8
3504
+ Content-Transfer-Encoding: 7bit
3505
+
3506
+ <h3> You've received a new message from: <a href="mailto:odell_wiegand@green.com">Mr. Pierre Stroman</a> </h3>
3507
+
3508
+ <hr />
3509
+
3510
+ <h3> Aliquid dolorem a fugiat repellat vel sed. </h3>
3511
+
3512
+ <p>Et neque omnis odit dolores ullam et animi quae. Dolores quisquam quis quae. Est quisquam dolore illo doloribus ea.</p>
3513
+
3514
+ <br />
3515
+ <hr />
3516
+
3517
+ <p> Please respond to Mr. Pierre Stroman as soon as possible. </p>
3518
+ Redirected to http://test.host/
3519
+ Completed 302 Found in 25.1ms (ActiveRecord: 0.0ms)
3520
+  (0.1ms) rollback transaction
3521
+  (0.0ms) begin transaction
3522
+
3523
+ Sent mail to test@example.com, test2@example.com (13.7ms)
3524
+ Date: Sun, 24 Nov 2013 10:38:36 -0700
3525
+ From: elisabeth.heller@parisiandurgan.ca
3526
+ To: test@example.com,
3527
+ test2@example.com
3528
+ Cc: cc_me@example.com,
3529
+ cc_me2@example.com
3530
+ Message-ID: <5292399c733c0_76353fc9dc85e6d01474a@Bens-MacBook-Pro.local.mail>
3531
+ Subject: [Simple Contact] Ullam ipsa voluptatem id rerum.
3532
+ Mime-Version: 1.0
3533
+ Content-Type: text/html;
3534
+ charset=UTF-8
3535
+ Content-Transfer-Encoding: 7bit
3536
+
3537
+ <h3> You've received a new message from: <a href="mailto:elisabeth.heller@parisiandurgan.ca">Dolores McLaughlin</a> </h3>
3538
+
3539
+ <hr />
3540
+
3541
+ <h3> Ullam ipsa voluptatem id rerum. </h3>
3542
+
3543
+ <p>Consequatur saepe quia tenetur. Fuga placeat nisi sunt laborum omnis. Quae odit inventore vel quod. Voluptatem doloribus nemo quasi minima molestiae non minus soluta. Distinctio et molestiae dicta reiciendis amet officiis voluptate.</p>
3544
+
3545
+ <br />
3546
+ <hr />
3547
+
3548
+ <p> Please respond to Dolores McLaughlin as soon as possible. </p>
3549
+  (0.1ms) rollback transaction
3550
+  (0.0ms) begin transaction
3551
+
3552
+ Sent mail to test@example.com, test2@example.com (13.2ms)
3553
+ Date: Sun, 24 Nov 2013 10:38:36 -0700
3554
+ From: walker@schoensanford.com
3555
+ To: test@example.com,
3556
+ test2@example.com
3557
+ Cc: cc_me@example.com,
3558
+ cc_me2@example.com
3559
+ Message-ID: <5292399c7ab60_76353fc9dc85e6d01489@Bens-MacBook-Pro.local.mail>
3560
+ Subject: [Simple Contact] Laudantium et asperiores mollitia occaecati.
3561
+ Mime-Version: 1.0
3562
+ Content-Type: text/html;
3563
+ charset=UTF-8
3564
+ Content-Transfer-Encoding: 7bit
3565
+
3566
+ <h3> You've received a new message from: <a href="mailto:walker@schoensanford.com">Mrs. Ola Mitchell</a> </h3>
3567
+
3568
+ <hr />
3569
+
3570
+ <h3> Laudantium et asperiores mollitia occaecati. </h3>
3571
+
3572
+ <p>Tempore sed officia id accusantium iste. Pariatur sapiente ea rerum qui nulla architecto id. Mollitia dolor dolorum repellat. Omnis et at ipsum nemo animi. Sequi laudantium voluptates aliquam.</p>
3573
+
3574
+ <br />
3575
+ <hr />
3576
+
3577
+ <p> Please respond to Mrs. Ola Mitchell as soon as possible. </p>
3578
+  (0.0ms) rollback transaction
3579
+  (0.0ms) begin transaction
3580
+
3581
+ Sent mail to test@example.com, test2@example.com (13.1ms)
3582
+ Date: Sun, 24 Nov 2013 10:38:36 -0700
3583
+ From: jeffrey_heathcote@okunevapadberg.us
3584
+ To: test@example.com,
3585
+ test2@example.com
3586
+ Cc: cc_me@example.com,
3587
+ cc_me2@example.com
3588
+ Message-ID: <5292399c81f1c_76353fc9dc85e6d01491b@Bens-MacBook-Pro.local.mail>
3589
+ Subject: [Simple Contact] Veritatis quaerat cupiditate molestiae corporis
3590
+ autem magni itaque.
3591
+ Mime-Version: 1.0
3592
+ Content-Type: text/html;
3593
+ charset=UTF-8
3594
+ Content-Transfer-Encoding: 7bit
3595
+
3596
+ <h3> You've received a new message from: <a href="mailto:jeffrey_heathcote@okunevapadberg.us">Marc Gislason</a> </h3>
3597
+
3598
+ <hr />
3599
+
3600
+ <h3> Veritatis quaerat cupiditate molestiae corporis autem magni itaque. </h3>
3601
+
3602
+ <p>Sequi sunt voluptates consequatur et qui. Ab laboriosam molestiae aspernatur dolorem repellendus. Aut incidunt itaque consequatur totam.</p>
3603
+
3604
+ <br />
3605
+ <hr />
3606
+
3607
+ <p> Please respond to Marc Gislason as soon as possible. </p>
3608
+  (0.1ms) rollback transaction
3609
+  (0.0ms) begin transaction
3610
+  (0.0ms) rollback transaction
3611
+  (0.0ms) begin transaction
3612
+  (0.0ms) rollback transaction
3613
+  (0.0ms) begin transaction
3614
+  (0.0ms) rollback transaction
3615
+  (0.0ms) begin transaction
3616
+  (0.0ms) rollback transaction
3617
+  (0.0ms) begin transaction
3618
+  (0.0ms) rollback transaction
3619
+  (0.0ms) begin transaction
3620
+  (0.0ms) rollback transaction
3621
+  (0.0ms) begin transaction
3622
+  (0.0ms) rollback transaction
3623
+ Connecting to database specified by database.yml
3624
+  (0.2ms) begin transaction
3625
+ Processing by HomeController#index as HTML
3626
+ Rendered home/index.html.erb within layouts/application (0.7ms)
3627
+ Completed 200 OK in 8.8ms (Views: 8.5ms | ActiveRecord: 0.0ms)
3628
+  (0.1ms) rollback transaction
3629
+  (0.1ms) begin transaction
3630
+  (0.0ms) rollback transaction
3631
+  (0.1ms) begin transaction
3632
+ Processing by SimpleContact::ContactController#new as HTML
3633
+ Completed 200 OK in 7.1ms (Views: 6.8ms | ActiveRecord: 0.0ms)
3634
+  (0.1ms) rollback transaction
3635
+  (0.0ms) begin transaction
3636
+ Processing by SimpleContact::ContactController#create as HTML
3637
+ Parameters: {"message"=>{"body"=>"Ipsam minima et unde est amet temporibus dicta. Explicabo iusto corrupti ea consectetur possimus sed. Laudantium nihil maxime et optio animi nemo omnis. Repellat dolorum sed et aut iusto. Non doloribus enim ea facere.", "email"=>nil, "name"=>"Mrs. Kadin Feest", "subject"=>"Et earum rem neque quo unde fugit."}}
3638
+ Completed 200 OK in 4.6ms (Views: 3.3ms | ActiveRecord: 0.0ms)
3639
+  (0.1ms) rollback transaction
3640
+  (0.0ms) begin transaction
3641
+ Processing by SimpleContact::ContactController#create as HTML
3642
+ Parameters: {"message"=>{"body"=>"Cupiditate qui at molestiae dolor repellendus harum. Eligendi sit enim neque assumenda. Sequi quo error consectetur iure quis. Sed maxime ipsum accusantium architecto. Consectetur explicabo nulla voluptatem sit et minima maxime quaerat.", "email"=>"kaci@botsford.name", "name"=>"Payton Ritchie", "subject"=>"Ut impedit in debitis harum aut."}}
3643
+
3644
+ Sent mail to test@gmail.com (9.2ms)
3645
+ Date: Sun, 24 Nov 2013 10:40:46 -0700
3646
+ From: kaci@botsford.name
3647
+ To: test@gmail.com
3648
+ Message-ID: <52923a1e28a1a_76783fcacd45e6d876042@Bens-MacBook-Pro.local.mail>
3649
+ Subject: [Simple Contact] Ut impedit in debitis harum aut.
3650
+ Mime-Version: 1.0
3651
+ Content-Type: text/html;
3652
+ charset=UTF-8
3653
+ Content-Transfer-Encoding: 7bit
3654
+
3655
+ <h3> You've received a new message from: <a href="mailto:kaci@botsford.name">Payton Ritchie</a> </h3>
3656
+
3657
+ <hr />
3658
+
3659
+ <h3> Ut impedit in debitis harum aut. </h3>
3660
+
3661
+ <p>Cupiditate qui at molestiae dolor repellendus harum. Eligendi sit enim neque assumenda. Sequi quo error consectetur iure quis. Sed maxime ipsum accusantium architecto. Consectetur explicabo nulla voluptatem sit et minima maxime quaerat.</p>
3662
+
3663
+ <br />
3664
+ <hr />
3665
+
3666
+ <p> Please respond to Payton Ritchie as soon as possible. </p>
3667
+ Redirected to http://test.host/
3668
+ Completed 302 Found in 24.6ms (ActiveRecord: 0.0ms)
3669
+  (0.1ms) rollback transaction
3670
+  (0.0ms) begin transaction
3671
+
3672
+ Sent mail to test@example.com, test2@example.com (13.3ms)
3673
+ Date: Sun, 24 Nov 2013 10:40:46 -0700
3674
+ From: orlo@schowalter.ca
3675
+ To: test@example.com,
3676
+ test2@example.com
3677
+ Cc: cc_me@example.com,
3678
+ cc_me2@example.com
3679
+ Message-ID: <52923a1e366f6_76783fcacd45e6d876130@Bens-MacBook-Pro.local.mail>
3680
+ Subject: [Simple Contact] Qui sit omnis velit.
3681
+ Mime-Version: 1.0
3682
+ Content-Type: text/html;
3683
+ charset=UTF-8
3684
+ Content-Transfer-Encoding: 7bit
3685
+
3686
+ <h3> You've received a new message from: <a href="mailto:orlo@schowalter.ca">Mr. Gabe Terry</a> </h3>
3687
+
3688
+ <hr />
3689
+
3690
+ <h3> Qui sit omnis velit. </h3>
3691
+
3692
+ <p>Vel eum doloremque minus reiciendis asperiores. Non harum iure quis placeat enim. Ipsam ullam minus rerum quisquam ab. Nulla repellendus corporis aut amet. Qui quasi autem nostrum ea.</p>
3693
+
3694
+ <br />
3695
+ <hr />
3696
+
3697
+ <p> Please respond to Mr. Gabe Terry as soon as possible. </p>
3698
+  (0.1ms) rollback transaction
3699
+  (0.0ms) begin transaction
3700
+
3701
+ Sent mail to test@example.com, test2@example.com (13.4ms)
3702
+ Date: Sun, 24 Nov 2013 10:40:46 -0700
3703
+ From: viviane@beier.info
3704
+ To: test@example.com,
3705
+ test2@example.com
3706
+ Cc: cc_me@example.com,
3707
+ cc_me2@example.com
3708
+ Message-ID: <52923a1e3df52_76783fcacd45e6d87623c@Bens-MacBook-Pro.local.mail>
3709
+ Subject: [Simple Contact] Molestiae est quos adipisci doloremque velit
3710
+ laudantium perferendis.
3711
+ Mime-Version: 1.0
3712
+ Content-Type: text/html;
3713
+ charset=UTF-8
3714
+ Content-Transfer-Encoding: 7bit
3715
+
3716
+ <h3> You've received a new message from: <a href="mailto:viviane@beier.info">Alyce Corwin</a> </h3>
3717
+
3718
+ <hr />
3719
+
3720
+ <h3> Molestiae est quos adipisci doloremque velit laudantium perferendis. </h3>
3721
+
3722
+ <p>Quo ut quia distinctio illum. Rerum alias optio magni qui necessitatibus et. Sed esse et quia unde necessitatibus eligendi quasi saepe. Consequatur rerum laudantium corrupti ut debitis incidunt. Quam quia corporis rerum recusandae dolorum illo.</p>
3723
+
3724
+ <br />
3725
+ <hr />
3726
+
3727
+ <p> Please respond to Alyce Corwin as soon as possible. </p>
3728
+  (0.1ms) rollback transaction
3729
+  (0.0ms) begin transaction
3730
+
3731
+ Sent mail to test@example.com, test2@example.com (13.3ms)
3732
+ Date: Sun, 24 Nov 2013 10:40:46 -0700
3733
+ From: elyse@ratke.info
3734
+ To: test@example.com,
3735
+ test2@example.com
3736
+ Cc: cc_me@example.com,
3737
+ cc_me2@example.com
3738
+ Message-ID: <52923a1e45512_76783fcacd45e6d87634a@Bens-MacBook-Pro.local.mail>
3739
+ Subject: [Simple Contact] Aspernatur enim fugiat voluptatem voluptas ea
3740
+ ratione in.
3741
+ Mime-Version: 1.0
3742
+ Content-Type: text/html;
3743
+ charset=UTF-8
3744
+ Content-Transfer-Encoding: 7bit
3745
+
3746
+ <h3> You've received a new message from: <a href="mailto:elyse@ratke.info">Sophie Gleichner</a> </h3>
3747
+
3748
+ <hr />
3749
+
3750
+ <h3> Aspernatur enim fugiat voluptatem voluptas ea ratione in. </h3>
3751
+
3752
+ <p>Ducimus et quaerat ullam soluta cupiditate est odio. Dolorem et incidunt tempore eos. Aut libero molestiae deleniti in numquam. Praesentium ducimus et quia. Eum error minima voluptas.</p>
3753
+
3754
+ <br />
3755
+ <hr />
3756
+
3757
+ <p> Please respond to Sophie Gleichner as soon as possible. </p>
3758
+  (0.1ms) rollback transaction
3759
+  (0.0ms) begin transaction
3760
+  (0.0ms) rollback transaction
3761
+  (0.0ms) begin transaction
3762
+  (0.0ms) rollback transaction
3763
+  (0.0ms) begin transaction
3764
+  (0.0ms) rollback transaction
3765
+  (0.0ms) begin transaction
3766
+  (0.0ms) rollback transaction
3767
+  (0.0ms) begin transaction
3768
+  (0.0ms) rollback transaction
3769
+  (0.0ms) begin transaction
3770
+  (0.0ms) rollback transaction
3771
+  (0.0ms) begin transaction
3772
+  (0.0ms) rollback transaction
3773
+ Connecting to database specified by database.yml
3774
+  (0.2ms) begin transaction
3775
+ Processing by HomeController#index as HTML
3776
+ Rendered home/index.html.erb within layouts/application (0.7ms)
3777
+ Completed 200 OK in 6.2ms (Views: 6.0ms | ActiveRecord: 0.0ms)
3778
+  (0.0ms) rollback transaction
3779
+  (0.0ms) begin transaction
3780
+  (0.0ms) rollback transaction
3781
+  (0.0ms) begin transaction
3782
+ Processing by SimpleContact::ContactController#new as HTML
3783
+ Completed 200 OK in 6.7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
3784
+  (0.0ms) rollback transaction
3785
+  (0.0ms) begin transaction
3786
+ Processing by SimpleContact::ContactController#create as HTML
3787
+ Parameters: {"message"=>{"body"=>"Velit maxime quaerat laudantium. Porro asperiores culpa consectetur consequatur. Et accusamus reiciendis maiores consequatur nulla ut tempora error. Repellendus repellat doloribus sit ipsa.", "email"=>nil, "name"=>"Eunice Auer", "subject"=>"Vitae laudantium doloribus officiis aspernatur."}}
3788
+ Completed 200 OK in 4.5ms (Views: 3.3ms | ActiveRecord: 0.0ms)
3789
+  (0.1ms) rollback transaction
3790
+  (0.0ms) begin transaction
3791
+ Processing by SimpleContact::ContactController#create as HTML
3792
+ Parameters: {"message"=>{"body"=>"Eaque totam est sint. Distinctio id magni sint. Vel neque et et incidunt quidem sit. Molestias veniam cupiditate harum accusantium aspernatur deleniti voluptas.", "email"=>"cleta@kovacekquigley.info", "name"=>"Urban DuBuque", "subject"=>"Velit cumque cupiditate laboriosam debitis voluptatibus."}}
3793
+
3794
+ Sent mail to test@gmail.com (8.9ms)
3795
+ Date: Sun, 24 Nov 2013 10:46:54 -0700
3796
+ From: cleta@kovacekquigley.info
3797
+ To: test@gmail.com
3798
+ Message-ID: <52923b8eb2a44_775e3fd13d45e6d0986fe@Bens-MacBook-Pro.local.mail>
3799
+ Subject: [Simple Contact] Velit cumque cupiditate laboriosam debitis
3800
+ voluptatibus.
3801
+ Mime-Version: 1.0
3802
+ Content-Type: text/html;
3803
+ charset=UTF-8
3804
+ Content-Transfer-Encoding: 7bit
3805
+
3806
+ <h3> You've received a new message from: <a href="mailto:cleta@kovacekquigley.info">Urban DuBuque</a> </h3>
3807
+
3808
+ <hr />
3809
+
3810
+ <h3> Velit cumque cupiditate laboriosam debitis voluptatibus. </h3>
3811
+
3812
+ <p>Eaque totam est sint. Distinctio id magni sint. Vel neque et et incidunt quidem sit. Molestias veniam cupiditate harum accusantium aspernatur deleniti voluptas.</p>
3813
+
3814
+ <br />
3815
+ <hr />
3816
+
3817
+ <p> Please respond to Urban DuBuque as soon as possible. </p>
3818
+ Redirected to http://test.host/
3819
+ Completed 302 Found in 24.2ms (ActiveRecord: 0.0ms)
3820
+  (0.1ms) rollback transaction
3821
+  (0.0ms) begin transaction
3822
+
3823
+ Sent mail to test@gmail.com (7.1ms)
3824
+ Date: Sun, 24 Nov 2013 10:46:54 -0700
3825
+ From: teresa_dach@powlowskiwyman.us
3826
+ To: test@gmail.com
3827
+ Message-ID: <52923b8ebd9a5_775e3fd13d45e6d098755@Bens-MacBook-Pro.local.mail>
3828
+ Subject: [Simple Contact] Itaque nesciunt placeat necessitatibus delectus
3829
+ asperiores repellat quia ut.
3830
+ Mime-Version: 1.0
3831
+ Content-Type: text/html;
3832
+ charset=UTF-8
3833
+ Content-Transfer-Encoding: 7bit
3834
+
3835
+ <h3> You've received a new message from: <a href="mailto:teresa_dach@powlowskiwyman.us">Vergie Casper</a> </h3>
3836
+
3837
+ <hr />
3838
+
3839
+ <h3> Itaque nesciunt placeat necessitatibus delectus asperiores repellat quia ut. </h3>
3840
+
3841
+ <p>Asperiores quia enim sed quasi labore. Error voluptatem incidunt neque nesciunt voluptas. At rerum sed sapiente quod veritatis. Dolores quibusdam ex aut deserunt numquam enim.</p>
3842
+
3843
+ <br />
3844
+ <hr />
3845
+
3846
+ <p> Please respond to Vergie Casper as soon as possible. </p>
3847
+  (0.1ms) rollback transaction
3848
+  (0.0ms) begin transaction
3849
+
3850
+ Sent mail to test@gmail.com (6.6ms)
3851
+ Date: Sun, 24 Nov 2013 10:46:54 -0700
3852
+ From: caroline@mcclure.com
3853
+ To: test@gmail.com
3854
+ Message-ID: <52923b8ec199f_775e3fd13d45e6d098812@Bens-MacBook-Pro.local.mail>
3855
+ Subject: [Simple Contact] Aut ut iure ipsa placeat incidunt dolorem quos.
3856
+ Mime-Version: 1.0
3857
+ Content-Type: text/html;
3858
+ charset=UTF-8
3859
+ Content-Transfer-Encoding: 7bit
3860
+
3861
+ <h3> You've received a new message from: <a href="mailto:caroline@mcclure.com">Florida Adams</a> </h3>
3862
+
3863
+ <hr />
3864
+
3865
+ <h3> Aut ut iure ipsa placeat incidunt dolorem quos. </h3>
3866
+
3867
+ <p>Architecto itaque reiciendis quasi vero incidunt laborum. Quae quis aspernatur et veritatis architecto blanditiis. Maxime quia facere cum sint.</p>
3868
+
3869
+ <br />
3870
+ <hr />
3871
+
3872
+ <p> Please respond to Florida Adams as soon as possible. </p>
3873
+  (0.1ms) rollback transaction
3874
+  (0.0ms) begin transaction
3875
+
3876
+ Sent mail to test@gmail.com (6.6ms)
3877
+ Date: Sun, 24 Nov 2013 10:46:54 -0700
3878
+ From: chester_wolff@toyoga.name
3879
+ To: test@gmail.com
3880
+ Message-ID: <52923b8ec55ad_775e3fd13d45e6d098993@Bens-MacBook-Pro.local.mail>
3881
+ Subject: [Simple Contact] Eius maxime a vel est distinctio sequi et sunt.
3882
+ Mime-Version: 1.0
3883
+ Content-Type: text/html;
3884
+ charset=UTF-8
3885
+ Content-Transfer-Encoding: 7bit
3886
+
3887
+ <h3> You've received a new message from: <a href="mailto:chester_wolff@toyoga.name">Felicity Konopelski</a> </h3>
3888
+
3889
+ <hr />
3890
+
3891
+ <h3> Eius maxime a vel est distinctio sequi et sunt. </h3>
3892
+
3893
+ <p>Maxime dolor repellendus et nihil nisi nihil ullam beatae. Dolores eaque perspiciatis quasi corrupti voluptate alias culpa. Quia et accusantium quas veritatis natus libero perferendis itaque. Perferendis quia id aut error quasi. Sit voluptas temporibus a qui eligendi.</p>
3894
+
3895
+ <br />
3896
+ <hr />
3897
+
3898
+ <p> Please respond to Felicity Konopelski as soon as possible. </p>
3899
+  (0.0ms) rollback transaction
3900
+  (0.0ms) begin transaction
3901
+  (0.0ms) rollback transaction
3902
+  (0.0ms) begin transaction
3903
+  (0.1ms) rollback transaction
3904
+  (0.0ms) begin transaction
3905
+  (0.0ms) rollback transaction
3906
+  (0.0ms) begin transaction
3907
+  (0.0ms) rollback transaction
3908
+  (0.0ms) begin transaction
3909
+  (0.0ms) rollback transaction
3910
+  (0.0ms) begin transaction
3911
+  (0.0ms) rollback transaction
3912
+  (0.0ms) begin transaction
3913
+  (0.0ms) rollback transaction
3914
+ Connecting to database specified by database.yml
3915
+  (0.2ms) begin transaction
3916
+ Processing by HomeController#index as HTML
3917
+ Rendered home/index.html.erb within layouts/application (0.7ms)
3918
+ Completed 200 OK in 6.1ms (Views: 5.9ms | ActiveRecord: 0.0ms)
3919
+  (0.0ms) rollback transaction
3920
+  (0.0ms) begin transaction
3921
+  (0.0ms) rollback transaction
3922
+  (0.0ms) begin transaction
3923
+ Processing by SimpleContact::ContactController#new as HTML
3924
+ Completed 200 OK in 6.5ms (Views: 6.3ms | ActiveRecord: 0.0ms)
3925
+  (0.0ms) rollback transaction
3926
+  (0.0ms) begin transaction
3927
+ Processing by SimpleContact::ContactController#create as HTML
3928
+ Parameters: {"message"=>{"body"=>"Pariatur repellat in molestias dolores. Pariatur vitae minima quod. Atque ipsa non veritatis facere hic aut modi. Iure recusandae vitae suscipit alias voluptatem aut praesentium expedita.", "email"=>nil, "name"=>"Keon Lubowitz", "subject"=>"Nobis tenetur velit cumque dolorum illo."}}
3929
+ Completed 200 OK in 5.0ms (Views: 3.7ms | ActiveRecord: 0.0ms)
3930
+  (0.1ms) rollback transaction
3931
+  (0.0ms) begin transaction
3932
+ Processing by SimpleContact::ContactController#create as HTML
3933
+ Parameters: {"message"=>{"body"=>"Porro dolorum quia est. Ipsam alias veniam quo quis molestiae ut id. Est et corrupti sunt voluptas accusantium id at.", "email"=>"juvenal_oreilly@jaskolskimorar.us", "name"=>"Isac Robel", "subject"=>"Eveniet totam quis laboriosam alias atque ut."}}
3934
+
3935
+ Sent mail to test@gmail.com (8.9ms)
3936
+ Date: Sun, 24 Nov 2013 10:51:08 -0700
3937
+ From: juvenal_oreilly@jaskolskimorar.us
3938
+ To: test@gmail.com
3939
+ Message-ID: <52923c8ce0ac1_78203fdb1485e6dc629f@Bens-MacBook-Pro.local.mail>
3940
+ Subject: [Simple Contact] Eveniet totam quis laboriosam alias atque ut.
3941
+ Mime-Version: 1.0
3942
+ Content-Type: text/html;
3943
+ charset=UTF-8
3944
+ Content-Transfer-Encoding: 7bit
3945
+
3946
+ <h3> You've received a new message from: <a href="mailto:juvenal_oreilly@jaskolskimorar.us">Isac Robel</a> </h3>
3947
+
3948
+ <hr />
3949
+
3950
+ <h3> Eveniet totam quis laboriosam alias atque ut. </h3>
3951
+
3952
+ <p>Porro dolorum quia est. Ipsam alias veniam quo quis molestiae ut id. Est et corrupti sunt voluptas accusantium id at.</p>
3953
+
3954
+ <br />
3955
+ <hr />
3956
+
3957
+ <p> Please respond to Isac Robel as soon as possible. </p>
3958
+ Redirected to http://test.host/
3959
+ Completed 302 Found in 24.5ms (ActiveRecord: 0.0ms)
3960
+  (0.1ms) rollback transaction
3961
+  (0.0ms) begin transaction
3962
+
3963
+ Sent mail to test@example.com (12.0ms)
3964
+ Date: Sun, 24 Nov 2013 10:51:08 -0700
3965
+ From: cordia_langosh@tillman.ca
3966
+ To: test@example.com
3967
+ Cc: cc_me@example.com,
3968
+ cc_me2@example.com
3969
+ Message-ID: <52923c8ced2f9_78203fdb1485e6dc630f2@Bens-MacBook-Pro.local.mail>
3970
+ Subject: [Simple Contact] Dolorem mollitia voluptatum sed eos assumenda et
3971
+ vero.
3972
+ Mime-Version: 1.0
3973
+ Content-Type: text/html;
3974
+ charset=UTF-8
3975
+ Content-Transfer-Encoding: 7bit
3976
+
3977
+ <h3> You've received a new message from: <a href="mailto:cordia_langosh@tillman.ca">Jaunita Anderson</a> </h3>
3978
+
3979
+ <hr />
3980
+
3981
+ <h3> Dolorem mollitia voluptatum sed eos assumenda et vero. </h3>
3982
+
3983
+ <p>Deleniti est suscipit optio minus. Aspernatur provident dicta a ipsa. Rerum nesciunt sit maxime quo nisi. Ab provident enim similique.</p>
3984
+
3985
+ <br />
3986
+ <hr />
3987
+
3988
+ <p> Please respond to Jaunita Anderson as soon as possible. </p>
3989
+  (0.1ms) rollback transaction
3990
+  (0.0ms) begin transaction
3991
+
3992
+ Sent mail to test@example.com (11.7ms)
3993
+ Date: Sun, 24 Nov 2013 10:51:08 -0700
3994
+ From: garret_shanahan@moenbrown.co.uk
3995
+ To: test@example.com
3996
+ Cc: cc_me@example.com,
3997
+ cc_me2@example.com
3998
+ Message-ID: <52923c8cf4050_78203fdb1485e6dc6317d@Bens-MacBook-Pro.local.mail>
3999
+ Subject: [Simple Contact] Reiciendis temporibus nesciunt sit.
4000
+ Mime-Version: 1.0
4001
+ Content-Type: text/html;
4002
+ charset=UTF-8
4003
+ Content-Transfer-Encoding: 7bit
4004
+
4005
+ <h3> You've received a new message from: <a href="mailto:garret_shanahan@moenbrown.co.uk">Malcolm Braun</a> </h3>
4006
+
4007
+ <hr />
4008
+
4009
+ <h3> Reiciendis temporibus nesciunt sit. </h3>
4010
+
4011
+ <p>Et et magni non blanditiis libero. Laboriosam vel sed error. Quae culpa fugiat quod.</p>
4012
+
4013
+ <br />
4014
+ <hr />
4015
+
4016
+ <p> Please respond to Malcolm Braun as soon as possible. </p>
4017
+  (0.0ms) rollback transaction
4018
+  (0.0ms) begin transaction
4019
+
4020
+ Sent mail to test@example.com (11.8ms)
4021
+ Date: Sun, 24 Nov 2013 10:51:09 -0700
4022
+ From: addison.bartoletti@deckowgreen.com
4023
+ To: test@example.com
4024
+ Cc: cc_me@example.com,
4025
+ cc_me2@example.com
4026
+ Message-ID: <52923c8d6758_78203fdb1485e6dc63263@Bens-MacBook-Pro.local.mail>
4027
+ Subject: [Simple Contact] Adipisci alias vero ut.
4028
+ Mime-Version: 1.0
4029
+ Content-Type: text/html;
4030
+ charset=UTF-8
4031
+ Content-Transfer-Encoding: 7bit
4032
+
4033
+ <h3> You've received a new message from: <a href="mailto:addison.bartoletti@deckowgreen.com">Vincenza O&#x27;Reilly</a> </h3>
4034
+
4035
+ <hr />
4036
+
4037
+ <h3> Adipisci alias vero ut. </h3>
4038
+
4039
+ <p>Voluptatem enim magni quam atque. In consequatur aperiam ullam asperiores eveniet adipisci maxime officia. Enim est quisquam quas quam atque aperiam veritatis quo.</p>
4040
+
4041
+ <br />
4042
+ <hr />
4043
+
4044
+ <p> Please respond to Vincenza O&#x27;Reilly as soon as possible. </p>
4045
+  (0.0ms) rollback transaction
4046
+  (0.0ms) begin transaction
4047
+  (0.0ms) rollback transaction
4048
+  (0.0ms) begin transaction
4049
+  (0.0ms) rollback transaction
4050
+  (0.0ms) begin transaction
4051
+  (0.0ms) rollback transaction
4052
+  (0.0ms) begin transaction
4053
+  (0.0ms) rollback transaction
4054
+  (0.0ms) begin transaction
4055
+  (0.0ms) rollback transaction
4056
+  (0.0ms) begin transaction
4057
+  (0.0ms) rollback transaction
4058
+  (0.0ms) begin transaction
4059
+  (0.0ms) rollback transaction
4060
+ Connecting to database specified by database.yml
4061
+  (0.2ms) begin transaction
4062
+ Processing by HomeController#index as HTML
4063
+ Rendered home/index.html.erb within layouts/application (0.7ms)
4064
+ Completed 200 OK in 6.3ms (Views: 6.0ms | ActiveRecord: 0.0ms)
4065
+  (0.0ms) rollback transaction
4066
+  (0.0ms) begin transaction
4067
+  (0.0ms) rollback transaction
4068
+  (0.0ms) begin transaction
4069
+ Processing by SimpleContact::ContactController#new as HTML
4070
+ Completed 200 OK in 6.5ms (Views: 6.3ms | ActiveRecord: 0.0ms)
4071
+  (0.1ms) rollback transaction
4072
+  (0.0ms) begin transaction
4073
+ Processing by SimpleContact::ContactController#create as HTML
4074
+ Parameters: {"message"=>{"body"=>"Quo voluptatem odit quas quasi animi facilis ut sed. Odio nemo unde eaque quia. Dolores illo aspernatur quod. Dignissimos voluptas velit nostrum corrupti aut totam. Nam culpa molestiae quos rem.", "email"=>nil, "name"=>"Garret Schinner", "subject"=>"Fugiat iste saepe nemo enim."}}
4075
+ Completed 200 OK in 4.6ms (Views: 3.3ms | ActiveRecord: 0.0ms)
4076
+  (0.1ms) rollback transaction
4077
+  (0.0ms) begin transaction
4078
+ Processing by SimpleContact::ContactController#create as HTML
4079
+ Parameters: {"message"=>{"body"=>"Rerum tenetur eum aliquid non excepturi quo. Fugit omnis quia velit. Ex nihil error est ullam sunt. Dolorem voluptatem et at incidunt saepe. Dolores illo quos omnis.", "email"=>"nora.bogisich@abshire.ca", "name"=>"Lee Barton", "subject"=>"Rerum ea qui ut delectus aut omnis voluptatibus saepe."}}
4080
+
4081
+ Sent mail to test@gmail.com (9.5ms)
4082
+ Date: Sun, 24 Nov 2013 10:51:17 -0700
4083
+ From: nora.bogisich@abshire.ca
4084
+ To: test@gmail.com
4085
+ Message-ID: <52923c95c1277_78393fe79985e6dc104ac@Bens-MacBook-Pro.local.mail>
4086
+ Subject: [Simple Contact] Rerum ea qui ut delectus aut omnis voluptatibus
4087
+ saepe.
4088
+ Mime-Version: 1.0
4089
+ Content-Type: text/html;
4090
+ charset=UTF-8
4091
+ Content-Transfer-Encoding: 7bit
4092
+
4093
+ <h3> You've received a new message from: <a href="mailto:nora.bogisich@abshire.ca">Lee Barton</a> </h3>
4094
+
4095
+ <hr />
4096
+
4097
+ <h3> Rerum ea qui ut delectus aut omnis voluptatibus saepe. </h3>
4098
+
4099
+ <p>Rerum tenetur eum aliquid non excepturi quo. Fugit omnis quia velit. Ex nihil error est ullam sunt. Dolorem voluptatem et at incidunt saepe. Dolores illo quos omnis.</p>
4100
+
4101
+ <br />
4102
+ <hr />
4103
+
4104
+ <p> Please respond to Lee Barton as soon as possible. </p>
4105
+ Redirected to http://test.host/
4106
+ Completed 302 Found in 25.2ms (ActiveRecord: 0.0ms)
4107
+  (0.1ms) rollback transaction
4108
+  (0.0ms) begin transaction
4109
+
4110
+ Sent mail to test@example.com (12.1ms)
4111
+ Date: Sun, 24 Nov 2013 10:51:17 -0700
4112
+ From: nathaniel.russel@king.us
4113
+ To: test@example.com
4114
+ Cc: cc_me@example.com,
4115
+ cc_me2@example.com
4116
+ Message-ID: <52923c95ce062_78393fe79985e6dc1056c@Bens-MacBook-Pro.local.mail>
4117
+ Subject: [Simple Contact] Vitae blanditiis adipisci perspiciatis animi cum
4118
+ ratione.
4119
+ Mime-Version: 1.0
4120
+ Content-Type: text/html;
4121
+ charset=UTF-8
4122
+ Content-Transfer-Encoding: 7bit
4123
+
4124
+ <h3> You've received a new message from: <a href="mailto:nathaniel.russel@king.us">Arden Bayer</a> </h3>
4125
+
4126
+ <hr />
4127
+
4128
+ <h3> Vitae blanditiis adipisci perspiciatis animi cum ratione. </h3>
4129
+
4130
+ <p>Similique adipisci quia ut voluptatem magni repudiandae. Ut quia sapiente molestiae fuga occaecati. A qui itaque dolores corrupti. Et fugit voluptates quis cupiditate.</p>
4131
+
4132
+ <br />
4133
+ <hr />
4134
+
4135
+ <p> Please respond to Arden Bayer as soon as possible. </p>
4136
+  (0.1ms) rollback transaction
4137
+  (0.0ms) begin transaction
4138
+
4139
+ Sent mail to test@example.com (11.7ms)
4140
+ Date: Sun, 24 Nov 2013 10:51:17 -0700
4141
+ From: chase_ortiz@pourosreichel.us
4142
+ To: test@example.com
4143
+ Cc: cc_me@example.com,
4144
+ cc_me2@example.com
4145
+ Message-ID: <52923c95d4ed6_78393fe79985e6dc106a0@Bens-MacBook-Pro.local.mail>
4146
+ Subject: [Simple Contact] Enim voluptas sit vitae architecto quia voluptatem.
4147
+ Mime-Version: 1.0
4148
+ Content-Type: text/html;
4149
+ charset=UTF-8
4150
+ Content-Transfer-Encoding: 7bit
4151
+
4152
+ <h3> You've received a new message from: <a href="mailto:chase_ortiz@pourosreichel.us">Abigayle Bins V</a> </h3>
4153
+
4154
+ <hr />
4155
+
4156
+ <h3> Enim voluptas sit vitae architecto quia voluptatem. </h3>
4157
+
4158
+ <p>Quia dolor odio ipsam aut dolores voluptas. Sunt mollitia sint nesciunt aut odit at sed. Atque ex nemo quis distinctio. Optio labore qui non a itaque. Aliquid eaque eveniet voluptatem et fugit quas nihil.</p>
4159
+
4160
+ <br />
4161
+ <hr />
4162
+
4163
+ <p> Please respond to Abigayle Bins V as soon as possible. </p>
4164
+  (0.0ms) rollback transaction
4165
+  (0.0ms) begin transaction
4166
+
4167
+ Sent mail to test@example.com (12.5ms)
4168
+ Date: Sun, 24 Nov 2013 10:51:17 -0700
4169
+ From: velda.yundt@hauckkessler.ca
4170
+ To: test@example.com
4171
+ Cc: cc_me@example.com,
4172
+ cc_me2@example.com
4173
+ Message-ID: <52923c95dbb8d_78393fe79985e6dc1079c@Bens-MacBook-Pro.local.mail>
4174
+ Subject: [Simple Contact] Nemo est odit quia molestias.
4175
+ Mime-Version: 1.0
4176
+ Content-Type: text/html;
4177
+ charset=UTF-8
4178
+ Content-Transfer-Encoding: 7bit
4179
+
4180
+ <h3> You've received a new message from: <a href="mailto:velda.yundt@hauckkessler.ca">Janis Sipes</a> </h3>
4181
+
4182
+ <hr />
4183
+
4184
+ <h3> Nemo est odit quia molestias. </h3>
4185
+
4186
+ <p>Ea id ut iure sunt magni veritatis. Dolores iste quae iusto ut mollitia. Praesentium iusto numquam nihil porro cumque inventore aperiam sequi.</p>
4187
+
4188
+ <br />
4189
+ <hr />
4190
+
4191
+ <p> Please respond to Janis Sipes as soon as possible. </p>
4192
+  (0.1ms) rollback transaction
4193
+  (0.0ms) begin transaction
4194
+  (0.0ms) rollback transaction
4195
+  (0.0ms) begin transaction
4196
+  (0.0ms) rollback transaction
4197
+  (0.0ms) begin transaction
4198
+  (0.0ms) rollback transaction
4199
+  (0.0ms) begin transaction
4200
+  (0.0ms) rollback transaction
4201
+  (0.0ms) begin transaction
4202
+  (0.0ms) rollback transaction
4203
+  (0.0ms) begin transaction
4204
+  (0.0ms) rollback transaction
4205
+  (0.0ms) begin transaction
4206
+  (0.0ms) rollback transaction