aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2018-12-28 11:23:27 +0200
committerbogdanvlviv <bogdanvlviv@gmail.com>2018-12-28 11:23:27 +0200
commit2e29488a8949bf410f95b7c7949c8be29d74b2b2 (patch)
tree6e5ba534004a8386482333707746af57a8b965c0 /guides
parente4b6495fd14cfcae7f101821ebf296c75ceca996 (diff)
downloadrails-2e29488a8949bf410f95b7c7949c8be29d74b2b2.tar.gz
rails-2e29488a8949bf410f95b7c7949c8be29d74b2b2.tar.bz2
rails-2e29488a8949bf410f95b7c7949c8be29d74b2b2.zip
Remove mention about `receive.action_mailer` from the AS instrumentation guide
Since e3f832a7433a291a51c5df397dc3dd654c1858cb `ActionMailer::Base.receive` is deprecated.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_support_instrumentation.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md
index 5e68b3f400..f9b8f3208d 100644
--- a/guides/source/active_support_instrumentation.md
+++ b/guides/source/active_support_instrumentation.md
@@ -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: "4f5b5491f1774_181b23fc3d4434d38138e5@mba.local.mail",
- subject: "Rails Guides",
- to: ["users@rails.com", "dhh@rails.com"],
- from: ["me@rails.com"],
- date: Sat, 10 Mar 2012 14:18:09 +0100,
- mail: "..." # omitted for brevity
-}
-```
-
### deliver.action_mailer
| Key | Value |