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,
password: 'MY PASSWORD',
authentication: 'login',
ssl: true,
tls: true,
enable_starttls_auto: true
}