Environment.rb
  ActionMailer::Base.delivery_method =
  :sendmail
  ActionMailer::Base.sendmail_settings =
  {      :address =
  "mail.example.org",    :domain =
  "example.org",   :port = 25,
  :authentication = :login,
  :user_name = "email+email.org",
  :password = "password" }
  ActionMailer::Base.perform_deliveries
  = true   ActionMailer::Base.raise_delivery_errors
  = true   ActionMailer::Base.default_charset =
  "utf-8"
Development.log
  Sent mail to 
[email protected]
  
  Date: Sat, 17 Apr 2010 19:38:08 -0500
  From: example.org To:
  
[email protected] Subject: Hello
  Mime-Version: 1.0 Content-Type:
  text/plain; charset=utf-8
The process of sending email is ok but when I check my email I didn't recive any. What seems to be wrong?