-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b442d85
commit 1b39dc9
Showing
3 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -175,19 +175,19 @@ NOTE: I'll take a moment for ActiveJob to send the email. Be patient. | |
$ rails console | ||
Running via Spring preloader in process 1795 | ||
Loading development environment (Rails 5.1.0) | ||
>> User.create(name: "Wintermeyer", email: "stefan.wintermeyer@amooma.de") | ||
>> User.create(name: "Wintermeyer", email: "sw@wintermeyer-consulting.de") | ||
(0.1ms) begin transaction | ||
SQL (0.5ms) INSERT INTO "users" ("name", "email", "created_at", | ||
"updated_at") VALUES (?, ?, ?, ?) [["name", "Wintermeyer"], | ||
["email", "stefan.wintermeyer@amooma.de"], ["created_at", | ||
["email", "sw@wintermeyer-consulting.de"], ["created_at", | ||
"2017-03-25 10:50:18.242475"], ["updated_at", | ||
"2017-03-25 10:50:18.242475"]] | ||
Enqueued ActionMailer::DeliveryJob | ||
(Job ID: a902ec6f-3b61-4c4c-8d75-d82acb663572) to Async(mailers) with | ||
arguments: "NotificationMailer", "new_account", "deliver_now", | ||
#<GlobalID:0x007fe31dcb3920 @uri=#<URI::GID gid://webshop/User/1>> | ||
(1.1ms) commit transaction | ||
=> #<User id: 1, name: "Wintermeyer", email: "stefan.wintermeyer@amooma.de", | ||
=> #<User id: 1, name: "Wintermeyer", email: "sw@wintermeyer-consulting.de", | ||
created_at: "2017-03-25 10:50:18", updated_at: "2017-03-25 10:50:18"> | ||
>> User Load (0.1ms) SELECT "users".* FROM "users" | ||
WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] | ||
|
@@ -200,10 +200,10 @@ arguments: "NotificationMailer", "new_account", "deliver_now", | |
Rendering notification_mailer/new_account.text.erb within layouts/mailer | ||
Rendered notification_mailer/new_account.text.erb within layouts/mailer (0.3ms) | ||
NotificationMailer#new_account: processed outbound mail in 141.0ms | ||
Sent mail to stefan.wintermeyer@amooma.de (26.2ms) | ||
Sent mail to sw@wintermeyer-consulting.de (26.2ms) | ||
Date: Sat, 25 Mar 2017 11:50:28 +0100 | ||
From: [email protected] | ||
To: stefan.wintermeyer@amooma.de | ||
To: sw@wintermeyer-consulting.de | ||
Message-ID: <[email protected]> | ||
Subject: Account Wintermeyer is active | ||
Mime-Version: 1.0 | ||
|
@@ -338,10 +338,10 @@ This means the sent e-mail would look like this: | |
|
||
[source,text] | ||
---- | ||
Sent mail to stefan.wintermeyer@amooma.de (50ms) | ||
Sent mail to sw@wintermeyer-consulting.de (50ms) | ||
Date: Wed, 30 May 2012 17:35:21 +0200 | ||
From: [email protected] | ||
To: stefan.wintermeyer@amooma.de | ||
To: sw@wintermeyer-consulting.de | ||
Message-ID: <[email protected]> | ||
Subject: The new account Wintermeyer is active. | ||
Mime-Version: 1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters