Disturbing Ruby on Rails Behavior

Posted by User on Stack Overflow See other posts from Stack Overflow or by User
Published on 2010-04-18T06:42:32Z Indexed on 2010/04/18 6:53 UTC
Read the original article Hit count: 402

Filed under:
|
|
|

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?

© Stack Overflow or respective owner

Related posts about ruby-on-rails

Related posts about rails