On Tue, Feb 14, 2012 at 10:32 AM, Christopher Jones <li...@ruby-forum.com>wrote:

>
> I have the following in my development.rb:
>
>  config.action_mailer.raise_delivery_errors = false
>
>  # config.action_mailer.delivery_method = :smtp
>
>        config.action_mailer.smtp_settings = {
>                :address => "smtphost.aber.ac.uk",
>                :port    => 25,
>                :domain  => "Christopher-PC"
>        }
>        ADMIN_EMAIL="chris230...@aol.com"
>
> Any help would be much appreciated. Thanks.
>
>
ActionMailer::Base.smtp_settings = {
  :address              => "address",
  :port                 => "port",
  :user_name            => "email",
  :password             => "password",
  :authentication       => "plain",
  :enable_starttls_auto => true
}


I use this settings.... maybe it can help, but it's in an initializers file


Javier Q.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to