I am getting the following error while trying to send an email.
Errno::ECONNREFUSED: Connection refused - connect(2)
Code that sends the email
Reminder.new_event(event_owner.email).deliver!
My Email settings are
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => "google.com",
:authentication =>"login",
:user_name => "email address",
:password => "password",
:enable_starttls_auto => true
}
Could you please help me. Thanks