Net :: SMTPAuthenticationError(ステージング環境で)Railsアプリからメールを送信するとき
Railsアプリケーションからメールを送信しています。開発環境ではうまく機能しますが、ステージングでは失敗します。次のエラーが発生します。 Net::SMTPAuthenticationError (534-5.7.14 <https://accounts.google.com/ContinueSignIn?plt=AKgnsbtdF0yjrQccTO2D_6) ステージング用のドメイン名がないので注意してください。 これがstaging.rbの私の設定です config.action_mailer.delivery_method = :smtp config.action_mailer.default_url_options = { :host => "my.ip.addr.here:80" } config.action_mailer.smtp_settings = { :address => "smtp.gmail.com", :port => 587, :domain => 'my.ip.addr.here:80' :user_name => "my_email_name@gmail.com", :password => "my_email_password", :authentication => 'login' } 助けてください。 編集。 :tls => trueオプションを追加した後 OpenSSL::SSL::SSLError (Unrecognized SSL message, plaintext connection?) 次に、ポートを25に変更し、これを取得します(30秒の遅延あり)。 …