I am trying to send email from my rails application, and have the
following set up in my development.rb config file:
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => “smtp.mail.wowway.com”, #also tried
smtp.mail.wideopenwest.com
:port => 25,
:domain => “wowway.com”, #also tried wideopenwest.com
:authentication => :login, #also tried :plain
:user_name => “[email protected]”,
:password => “mypassword”
}
According to my log file, it looks like the email was generated as
expected:
Sent mail to <<email id listed in registration form>>
Date: Wed, 20 Jan 2010 16:03:07 -0500
From: [email protected]
To: <<email id listed in registration form>>
Subject: Activate Your Account
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Congratulations , . . .
. . . body of email looks like I expect, including <%=
substitutions %>
. . .
Redirected to /
Completed in 7500ms (DB: 63) | 302 Found [http://localhost/users]
But I never receive an email, and there is nothing in my sent items on
wowway either.
Can someone tell me what I am missing or doing wrong?
Thank you for any help you can offer,
Steve