From: Jaime Iniesta Date: 2008-01-09T22:14:47+09:00 Subject: Re: can't send emails with rails Hi rabarama, I guess you should ask this on a Rails-only mailing list, but here's my working config file, on Rails 2: ActionMailer::Base.smtp_settings = { :address => "mail.domain.com", :port => 25, :domain => "domain.com", :authentication => :login, :user_name => "user@domain.com", :password => "mypassword", } ActionMailer::Base.perform_deliveries = true ActionMailer::Base.raise_delivery_errors = true ActionMailer::Base.default_content_type = "text/html" ActionMailer::Base.default_charset = "UTF-8" 2008/1/9, rabarama : > Hi i'm traing to send an email. -- Jaime Iniesta http://jaimeiniesta.com - http://railes.net