After several days trying I'm not able still to send mail, Rails seems to be sending, but nothing arrives on the other side.
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = false
config.action_mailer.default :charset => "utf-8"
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: 'smtp.zoho.com',
port: 587,
domain: 'chunchesenv-haguilar91.c9users.io',
password: 'passwordgoeshere',
authentication: 'plain',
ssl: true,
tls: true,
:enable_starttls_auto => true
}
This is my test server on cloud9 but I also tried on production, still nothing.
May you help us with this.