Rails アプリから Google を使用して電子メールを送信すると、次のようなエラーが発生します。
A Net::SMTPAuthenticationError occurred in messages#create
454 4.7.0 Cannot authenticate due to temporary system problem. Try again later. ch3sm7566201qab.9
/usr/ruby1.9.2/lib/ruby/1.9.1/net/smtp.rb:966:in `check_auth_response'
これは私のsetup_mail.rb
です:
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => 'oursite.com',
:user_name => 'support@oursite.com',
:password => 'password',
:authentication => 'plain',
:enable_starttls_auto => true
}
何が起こっているのですか?