Hi, I am getting this error when my notification plugin tries to send an e email. I believe I am using smtp. Ive read that smtp is the default mailer? this is what I have in my environment.rb.
Rails::Initializer.run do |config|
config.frameworks -= [ :action_web_service ]
...
end
ActionMailer::Base.server_settings = {
:address => "localhost",
:port => 25,
:domain => "mydomain",
:user_name => "admin@mydomain",
:password => "myPass",
:authentication => :login
}
any ideas? thanks