Hello,
 I am using action  mailer to send mails. I need to use a third party
smtp server. The third party smtp server i am using is authsmtp.


    ActionMailer::Base.smtp_settings = {
    :address            => "mail.authsmtp.com",
    :domain             => "mydomain.com",
    :port                 =>   2525,
    :authentication   =>  "login",
    :user_name        => "pr...@mydomain.com",
    :password          =>  "password for pr...@mydomain.com"
}


when i try to send the mail, i get authentication failed error. but if i
change the :address to mail.mydomain.com everything works fine.
I want to use authsmtp to send mail

I think i also have to authenticate the authsmtp server.I have its
username and password. Where do i have to write that.

Any idea whats going wrong.
Please help
Thank you.
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
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