method
perform_delivery_sendmail
perform_delivery_sendmail(mail)
private
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