module Jobs class MailRequestAcceptance @queue = :mail def self.perform(recipient_id, sender_id, aspect_id) Notifier.request_accepted(recipient_id, sender_id, aspect_id).deliver end end end