LIlsではアクションマーラーを使ってメールを送る.


Linuxではsendmailの設定を使用します.

ActionMailer::Base.delivery_method = :sendmail
ActionMailer::Base.sendmail_settings = { 
  :location       => '/usr/sbin/sendmail', 
  :arguments      => '-i -t -f [email protected]'
} 

アクションマーラーに注意してください.:Base.delivery_.method=:sendmailはデフォルトではsmatpを設定しないとsendmailを使用しないと送信できないようです.
smatpの設定を使う

ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
  :address => "mail.anyhost.com",
  :port => 25,
  :domain => "anyhost.com",
  :authentication => :login,
  :user_name => "youraccount",
  :password => "yourpassword",
}