class Mail::Exim

def self.call(path, arguments, destinations, mail)

def self.call(path, arguments, destinations, mail)
  popen "#{path} #{arguments}" do |io|
    io.puts mail.encoded.to_lf
    io.flush
  end
end