kanjai_mailer.rb 181 Bytes
class KanjaiMailer < ActionMailer::Base
  def send_mail(options)
    @options = options
    mail(from: options[:from],:to => options[:to], :subject => options[:subject])
  end

end