instance method
after_deliver
Ruby on Rails edge
Since v7.1.6Signature
after_deliver(*filters, &blk)
Defines a callback that will get called right after the message’s delivery method is finished.
Parameters
-
filtersrest -
blkblock
Source
# File actionmailer/lib/action_mailer/callbacks.rb, line 25
def after_deliver(*filters, &blk)
_insert_callbacks(filters, blk) do |name, options|
set_callback(:deliver, :after, name, options)
end
end
Defined in actionmailer/lib/action_mailer/callbacks.rb line 25
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionMailer::Callbacks::ClassMethods