aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYoshiyuki Hirano <yhirano@me.com>2017-10-13 22:26:13 +0900
committerYoshiyuki Hirano <yhirano@me.com>2017-10-13 22:26:13 +0900
commitbf5e693fd184cbbcfd56667f6f528313de2f35ae (patch)
tree420c0dc80a72f54d3495cbbe04d755664d383028
parent29da7d1ff510a9f376fc6c780273dfa89298ff51 (diff)
downloadrails-bf5e693fd184cbbcfd56667f6f528313de2f35ae.tar.gz
rails-bf5e693fd184cbbcfd56667f6f528313de2f35ae.tar.bz2
rails-bf5e693fd184cbbcfd56667f6f528313de2f35ae.zip
Add process.action_mailer notification to Instrumentation guide [ci skip]
-rw-r--r--guides/source/active_support_instrumentation.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md
index 3b31557f41..82168ffbdb 100644
--- a/guides/source/active_support_instrumentation.md
+++ b/guides/source/active_support_instrumentation.md
@@ -337,6 +337,22 @@ Action Mailer
}
```
+### process.action_mailer
+
+| Key | Value |
+| ------------- | ------------------------ |
+| `:mailer` | Name of the mailer class |
+| `:action` | The action |
+| `:args` | The arguments |
+
+```ruby
+{
+ mailer: "Notification",
+ action: "welcome_email",
+ args: []
+}
+```
+
Active Support
--------------