Rails Zoho配置通过控制台发送邮件,但不是从邮件程序类发送邮件

时间:2017-06-22 20:36:44

标签: ruby-on-rails-3 actionmailer zoho

我在development.rb上有以下smtp配置

   ActionMailer::Base.delivery_method = :smtp
      ActionMailer::Base.smtp_settings = {
        :address              => "smtp.zoho.com",
        :port                 => 465,
        :user_name => "xxx@xxx.com",
        :password => "xxxx",
        :authentication       => :login,
        :ssl                  => true,
        :tls                  => true,
        :enable_starttls_auto => true
      }

我通过rails控制台发送时工作,但出现错误

Net::SMTPAuthenticationError (535-5.7.8 Username and Password not accepted. Learn more at
):

当我通过邮件程序发送时。

1 个答案:

答案 0 :(得分:1)

当你试图通过控制器进入时,似乎gmail暂时阻止了你。

请检查此链接

{{3}}

希望这有帮助。