# File lib/merb-mailer/mailer.rb, line 102 def initialize(o={}) self.config = { :sendmail_path => '/usr/sbin/sendmail' } if config.nil? o[:rawhtml] = o.delete(:html) m = MailFactory.new() o.each { |k,v| m.send "#{k}=", v } @mail = m end