Trying to get ActionMailer set up for the first time

Hi,

Try adding these to your environment.rb

ActionMailer::Base.perform_deliveries = true ActionMailer::Base.raise_delivery_errors = true ActionMailer::Base.default_charset = "utf-8"

Also check the port for your mail settings.

Neha

I added those and tried tweaking this and that (again!), but nothing is different. I still see the email in the log, but it never arrives in an inbox. Any other thoughts?

Denise, I didn't go through your entire post, but this may be of help ->

Are you sure your port number is correct. If you are using gmail, then the port should be 587. Check for the port number.

Else try to get the mail on a different domain name like gmail and all.

Neha Chopra wrote:

If you are using gmail, then the port should be 587.

Thanks. I didn't realize that. I know that port is correct for my personal account, but I didn't change it for the google account.

ebrad wrote:

This may be of help -> #61 Sending Email - RailsCasts

Thanks. I love RailsCasts. I'll check that out.