diff options
author | Yoshiyuki Hirano <yhirano@me.com> | 2017-10-13 22:26:13 +0900 |
---|---|---|
committer | Yoshiyuki Hirano <yhirano@me.com> | 2017-10-13 22:26:13 +0900 |
commit | bf5e693fd184cbbcfd56667f6f528313de2f35ae (patch) | |
tree | 420c0dc80a72f54d3495cbbe04d755664d383028 | |
parent | 29da7d1ff510a9f376fc6c780273dfa89298ff51 (diff) | |
download | rails-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.md | 16 |
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 -------------- |