i'm using rails 3.2.11 and use blue host as my email server for sent emails.
below is my configuration info in development.rb
config.action_mailer.smtp_settings = {
:address => "box75112.bluehost.com",
:port => "465",
:domain => "bluehost.com",
:enable_starttls_auto => true,
:authentication => :login,
:user_name => "support@buddy.io",
:password => "93utitrpppJvZ,[#4rl4"
}
and these are my blue host info
Mail Server Username: support+buddy.io
Incoming Mail Server: mail.buddy.io
Incoming Mail Server: (SSL) box75112.bluehost.com
Outgoing Mail Server: mail.buddy.io (server requires authentication) port 26
Outgoing Mail Server: (SSL) box75112.bluehost.com (server requires authentication) port 465
Supported Incoming Mail Protocols: POP3, POP3S (SSL/TLS), IMAP, IMAPS (SSL/TLS)
Supported Outgoing Mail Protocols: SMTP, SMTPS (SSL/TLS)
but email is not sent out and also there is no error
can anyone please help?
Thanks