module Roda::RodaPlugins::Mailer::InstanceMethods
def initialize(env)
If this is an email request, set the mail object in the response, as well
def initialize(env) super if mail = env['roda.mail'] res = @_response res.mail = mail res.headers.delete(RodaResponseHeaders::CONTENT_TYPE) end end