I'm trying to trigger a mailer in localhost, I can get it to work with gmail but not with my own email hosted in a Linux Cpanel Godaddy server. This is my development.rb configuration:
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: 'smtpout.secureserver.net',
domain: 'mail.[mydomain].com',
port:25,
authentication: 'login',
user_name:'no-reply@[mydomain].mx',
password:'mypassword',
enable_starttls_auto: true
}
the port is 80 not 25, and make sure your firewall not block it