rad.mailer class LetterBuilder < Rad::Conveyors::Processor def call # prepare controller = workspace.controller.must_be.present raise "The controller #{controller} must be a Rad::Mailer::MailerController!" unless controller.is_a? Rad::Mailer::MailerController action = workspace.action = workspace.method_name # call content = catch :halt do controller.run_callbacks :action, method: action do # call controller controller.send action, *workspace.arguments # render view controller.render action: action end end controller.body = content unless content.blank? # letter workspace.letter = ::Rad::Mailer::Letter.new( from: controller.from, to: controller.to, subject: controller.subject, body: controller.body ) workspace.letter.validate! next_processor.call if next_processor end end