我相信这个错误是关于 ENV API Key 的。这在我的本地主机上运行良好,但在服务器上运行良好。
和我的 development.rb 文件。如下:
config.action_mailer.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "smtp.sendgrid.net",
:port => "587",
:authentication => :plain,
:user_name => 'apikey',
:password => ENV['SENDGRID_API_KEY']
}
我仍然收到如下错误
Errno::ECONNREFUSED(连接被拒绝 - “localhost”端口 25 的连接(2)):