Sha256: e1b2d97f9726769242316f818e545e0960dc511208ca7f4fe28876fa7a92a547
Contents?: true
Size: 1.29 KB
Versions: 19
Compression:
Stored size: 1.29 KB
Contents
module Mail # A delivery method implementation which sends via exim. # # To use this, first find out where the exim binary is on your computer, # if you are on a mac or unix box, it is usually in /usr/sbin/exim, this will # be your exim location. # # Mail.defaults do # delivery_method :exim # end # # Or if your exim binary is not at '/usr/sbin/exim' # # Mail.defaults do # delivery_method :exim, :location => '/absolute/path/to/your/exim' # end # # Then just deliver the email as normal: # # Mail.deliver do # to 'mikel@test.lindsaar.net' # from 'ada@test.lindsaar.net' # subject 'testing exim' # body 'testing exim' # end # # Or by calling deliver on a Mail message # # mail = Mail.new do # to 'mikel@test.lindsaar.net' # from 'ada@test.lindsaar.net' # subject 'testing exim' # body 'testing exim' # end # # mail.deliver! class Exim < Sendmail def initialize(values) self.settings = { :location => '/usr/sbin/exim', :arguments => '-i -t' }.merge(values) end def self.call(path, arguments, destinations, mail) popen "#{path} #{arguments}" do |io| io.puts mail.encoded.to_lf io.flush end end end end
Version data entries
19 entries across 18 versions & 9 rubygems