diff options
author | George Claghorn <george.claghorn@gmail.com> | 2018-12-28 11:57:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-28 11:57:44 -0500 |
commit | f046018402b1f25dcc61a1a7f3679180e8df9509 (patch) | |
tree | 6e5ba534004a8386482333707746af57a8b965c0 /guides | |
parent | e4b6495fd14cfcae7f101821ebf296c75ceca996 (diff) | |
parent | 2e29488a8949bf410f95b7c7949c8be29d74b2b2 (diff) | |
download | rails-f046018402b1f25dcc61a1a7f3679180e8df9509.tar.gz rails-f046018402b1f25dcc61a1a7f3679180e8df9509.tar.bz2 rails-f046018402b1f25dcc61a1a7f3679180e8df9509.zip |
Merge pull request #34814 from bogdanvlviv/follow-up-e3f832a7433a
Remove mention about `receive.action_mailer` from the AS instrumentation guide
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_support_instrumentation.md | 26 |
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 | |