A delivery method implementation which sends via sendmail.
To use this, first find out where the sendmail binary is on your computer, if you are on a mac or unix box, it is usually in /usr/sbin/sendmail, this will be your sendmail location.
Mail.defaults do delivery_method :sendmail end
Or if your sendmail binary is not at '/usr/sbin/sendmail'
Mail.defaults do delivery_method :sendmail, :location => '/absolute/path/to/your/sendmail' end
Then just deliver the email as normal:
Mail.deliver do to 'mikel@test.lindsaar.net' from 'ada@test.lindsaar.net' subject 'testing sendmail' body 'testing sendmail' 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 sendmail' body 'testing sendmail' end mail.deliver!
# File lib/mail/network/delivery_methods/sendmail.rb, line 46 def deliver!(mail) envelope_from = mail.return_path || mail.sender || mail.from_addrs.first return_path = "-f \"#{envelope_from.to_s.gsub('"', '\"')}\"" if envelope_from arguments = [settings[:arguments], return_path].compact.join(" ") Sendmail.call(settings[:location], arguments, mail.destinations.collect(&:shellescape).join(" "), mail) end
Generated with the Darkfish Rdoc Generator 2.