Actionmailer not working in rails 2.3

Posted by user163352 on Stack Overflow See other posts from Stack Overflow or by user163352
Published on 2010-03-25T08:54:03Z Indexed on 2010/03/25 11:03 UTC
Read the original article Hit count: 461

Filed under:

I'm using the following config:

ActionMailer::Base.smtp_settings = {
  :address => "smtp.gmail.com",
  :port => 587,
  :authentication => :plain,
  :enable_starttls_auto => true,
  :user_name  => "[email protected]",
  :password  => "sap"
}

When I send the mail, log shows mail is sent. I can see the mail in logger.

But, mail is not delivered to recipient email.

© Stack Overflow or respective owner

Related posts about ruby-on-rails