I have folowing configuration lines written in mailer.rb file to send mails using a particular sever.
config.active_record.default_timezone = :local
config.action_mailer.smtp_settings = { :address => "abcprojsmtp", :port => 25, :authentication => :login } config.action_mailer.delivery_method = :smtp config.action_mailer.perform_deliveries = true
Mails are not reaching the destination.
are any other configurations missing. Please help me with this.