Actionmailer not working in rails 2.3
- by user163352
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.