forked from rails/rails
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove mention about
receive.action_mailer
from the AS instrumentat…
…ion guide Since e3f832a `ActionMailer::Base.receive` is deprecated.
- Loading branch information
1 parent
e4b6495
commit 2e29488
Showing
2 changed files
with
4 additions
and
29 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
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 |
---|---|---|
|
@@ -291,32 +291,6 @@ INFO. The adapters will add their own data as well. | |
Action Mailer | ||
------------- | ||
|
||
### receive.action_mailer | ||
|
||
| Key | Value | | ||
| ------------- | -------------------------------------------- | | ||
| `:mailer` | Name of the mailer class | | ||
| `:message_id` | ID of the message, generated by the Mail gem | | ||
| `:subject` | Subject of the mail | | ||
| `:to` | To address(es) of the mail | | ||
| `:from` | From address of the mail | | ||
| `:bcc` | BCC addresses of the mail | | ||
| `:cc` | CC addresses of the mail | | ||
| `:date` | Date of the mail | | ||
| `:mail` | The encoded form of the mail | | ||
|
||
```ruby | ||
{ | ||
mailer: "Notification", | ||
message_id: "[email protected]", | ||
subject: "Rails Guides", | ||
to: ["[email protected]", "[email protected]"], | ||
from: ["[email protected]"], | ||
date: Sat, 10 Mar 2012 14:18:09 +0100, | ||
mail: "..." # omitted for brevity | ||
} | ||
``` | ||
|
||
### deliver.action_mailer | ||
|
||
| Key | Value | | ||
|