Parameters Action Mailer with BlueHost Brasil

0

Hello, I'm trying to send notifications in my rails application, in development mode. With GMAIL, everything is ok, but I'm not able to use it with the hosting I have at BlueHost Brasil. I've tried changing several parameters, it's currently like this:

 config.action_mailer.smtp_settings = {
    :address              => "smtp.meudominiobluehostbrasil.com.br",
    :port                 => 587,
    :user_name            => 'user@dominio',
    :password             => 'pass'
  }

Thanks in advance for your help!

    
asked by anonymous 25.04.2016 / 06:16

1 answer

0

According to the link if you use

If your service is:

  • For Free Email Services / Email Hosting Plans

    • POP pop.o-seu-nome-de-domínio (ex: pop.example.com) port 110
    • IMAP imap.o-seu-nome-de-domínio (ex: imap.example.com) port 143
    • SMTP smtp.o-seu-nome-de-domínio (ex: smtp.example.com) port 587
  • For Linux Hosting - cPanel Emails

    • POP pop.o-seu-nome-de-domínio (ex: mail.example.com) port 110
    • IMAP imap.o-seu-nome-de-domínio (ex: mail.example.com) port 143
    • SMTP smtp.o-seu-nome-de-domínio (ex: mail.example.com) port 587
  • For Windows Hosting - Plesk Emails

    • POP o-seu-nome-de-domínio (ex: example.com) port 110
    • IMAP o-seu-nome-de-domínio (eg example.com) port 143
    • SMTP o-seu-nome-de-domínio (ex: example.com) port 587

In your case hosting is Windows then it is probably the Plesk Emails it uses.

It should look like this:

config.action_mailer.smtp_settings = {
    :address              => "meudominiobluehostbrasil.com.br",
    :port                 => 587,
    :user_name            => 'user@dominio',
    :password             => 'pass'
}
    
25.04.2016 / 16:16