From: rabarama Date: 2008-01-09T21:04:58+09:00 Subject: can't send emails with rails Hi i'm traing to send an email. My pages seems to work correctly but i receive nothing. Here is my enviroment.rb configuration for actionmailer config.action_mailer.delivery_method = :SMTP config.action_mailer.smtp_settings = { :address => "smtp.MYDOMAIN.COM", :domain => "MYDOMAIN.COM", :authentication => :login, :user_name =>"my login to smtp server", :password =>"my password" } config.action_mailer.perform_deliveries = true config.action_mailer.raise_delivery_errors = true Log show this: Sent mail: Date: Wed, 9 Jan 2008 12:57:16 +0100 From: THE RIGHT ADDRESS To: THE RIGHT ADDRESS Subject: mail di prova Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 (obviously i masked with capital letters the real addresses) Im working on a pc with an outlook with the same account configuration and it works fine Is there something wrong? Why do i not receive anything? thanks for help to a new rails user.