```ruby class ResetPasswordEmail < ActiveMailer::Base before_send :do_a_thing def do_a_thing end end class InviteUserEmail < ActiveMailer::Base end InviteUserEmail.before_send_actions => [:do_a_thing] ```