Sending Emails are not working from Ruby on Rails applicationm

Sending Emails are not working from Ruby on Rails applicationm

Hello,

I'm trying to send email through my Ruby on Rails application but I'm getting the error   end of file reached


Below is my Action Mailer settings, let me know what should I've to do

ActionMailer::Base.smtp_settings = {
      address:              'smtp.zoho.com',
      port:                 465,
      user_name:            ' care@playsolar.in',
      password:             'MY PASSWORD',
      authentication:       'login',
       ssl:            true,
      tls:            true,
      enable_starttls_auto: true
 }