private Method

Base.perform_delivery_sendmail(mail)

There's no documentation for this item.

Source Code

# File action_mailer/base.rb, line 592
def perform_delivery_sendmail(mail)
  IO.popen("#{sendmail_settings[:location]} #{sendmail_settings[:arguments]}","w+") do |sm|
    sm.print(mail.encoded.gsub(/\r/, ''))
    sm.flush
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.