【发布时间】:2019-12-28 20:13:27
【问题描述】:
我正在尝试让 Rails 5.2 邮件程序正常工作,但在 localhost 和我的 Heroku production 环境中都遇到了 Net::SMTPAuthenticationError - 535 Authentication failed: account disabled 错误。
邮件看起来像这样:
class AdminNotificationsMailer < ApplicationMailer
default from: "liz@linchpinindustries.com"
def new_rfp(rfp)
@rfp = rfp
mail(
:to => "liz@linchpinindustries.com",
:subject => 'New RFP Alert!'
)
end
def new_contact_us(contact)
@contact = contact
mail(
to: "liz@linchpinindustries.com",
subject: 'New Contact Us Submission on LPI'
)
end
end
在我的rfp#create action 中使用触发器(对于第一个邮件,new_rfp 一个):
def create
@rfp = Rfp.new(rfp_params)
respond_to do |format|
if @rfp.save!
AdminNotificationsMailer.new_rfp(@rfp).deliver
format.html { redirect_to root_path, notice: "Thanks for your request! We'll get back to you ASAP. Stay tuned!" }
format.json { render :show, status: :created, location: @rfp }
else
format.html { render :new }
format.json { render json: @rfp.errors, status: :unprocessable_entity }
end
end
end
我已经配置了 Sendgrid,并使用 puts 仔细检查了我的用户名和密码(在本地主机和生产环境中是正确的)。
我的environment.rb 中有以下内容:
ActionMailer::Base.smtp_settings = {
:user_name => ENV["SENDGRID_USERNAME"],
:password => ENV["SENDGRID_PASSWORD"],
:domain => 'linchpinindustries.com',
:address => 'smtp.sendgrid.net',
:port => 587,
:authentication => :plain,
:enable_starttls_auto => true
}
我被正式难住了。谁能看到为什么会发生这个错误?
【问题讨论】: