我在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
):
当我通过邮件程序发送时。
答案 0 :(得分:1)
当你试图通过控制器进入时,似乎gmail暂时阻止了你。
请检查此链接
{{3}}
希望这有帮助。