diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-13 22:40:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-13 22:40:36 +0900 |
commit | 9434a0047af7bb71fd3a9a25d09b79e29d1395b6 (patch) | |
tree | 420c0dc80a72f54d3495cbbe04d755664d383028 /guides | |
parent | 29da7d1ff510a9f376fc6c780273dfa89298ff51 (diff) | |
parent | bf5e693fd184cbbcfd56667f6f528313de2f35ae (diff) | |
download | rails-9434a0047af7bb71fd3a9a25d09b79e29d1395b6.tar.gz rails-9434a0047af7bb71fd3a9a25d09b79e29d1395b6.tar.bz2 rails-9434a0047af7bb71fd3a9a25d09b79e29d1395b6.zip |
Merge pull request #30882 from yhirano55/add_mailer_notification_in_instrumentation_guide
Add process.action_mailer notification to Instrument guide [ci skip]
Diffstat (limited to 'guides')
-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 -------------- |