Flowdock
method

perform_delivery_sendmail

Importance_0
v2.0.3 - Show latest stable - 0 notes - Class: ActionMailer::Base
perform_delivery_sendmail(mail) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionmailer/lib/action_mailer/base.rb, line 595
      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
Register or log in to add new notes.