### rails tutorial11章 Herokuからメールが届きません。
rails tutorialにて勉強しているrails初学者です。
11章までなんとか進めたものの、11.4の本番環境でのメール送信でつまづいております。
開発環境はcloud9です。
SendGridの登録を行い、アドオンの追加、production.rbも設定しております。
ところが、実際に本番環境でsignupを行うと、「We're sorry, but something went wrong.」の画面になります。
SendGridの管理画面を確認しても、リクエストが行ってないのでその手前でエラーが発生しているのだと思います。
以下、heroku logsを見ると、、
heroku logs
Completed 500 Internal Server Error in 523ms (ActiveRecord: 82.4ms) NoMethodError (undefined method `activation_digest=' for #<User:0x000055eb9569deb8> Did you mean? activation_token=): app/models/user.rb:61:in `create_activation_digest'
production.rb ※<your heroku app>はhttps://herokuのapp名を入れています。
Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb. # Code is not reloaded between requests. config.cache_classes = true # Eager load code on boot. This eager loads most of Rails and # your application in memory, allowing both threaded web servers # and those relying on copy on write to perform better. # Rake tasks automatically ignore this option for performance. config.eager_load = true config.action_mailer.raise_delivery_errors = true config.action_mailer.delivery_method = :smtp host = '<your heroku app>.herokuapp.com' config.action_mailer.default_url_options = { host: host } ActionMailer::Base.smtp_settings = { :address => 'smtp.sendgrid.net', :port => '587', :authentication => :plain, :user_name => ENV['SENDGRID_USERNAME'], :password => ENV['SENDGRID_PASSWORD'], :domain => 'heroku.com', :enable_starttls_auto => true }
user.rb
class User < ApplicationRecord attr_accessor :remember_token, :activation_token before_save :downcase_email before_create :create_activation_digest validates :name, presence: true, length: { maximum: 50 } VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-]+(.[a-z\d\-]+)*.[a-z]+\z/i validates :email, presence: true, length: { maximum: 255 }, format: { with: VALID_EMAIL_REGEX}, uniqueness: { case_sensitive: false } has_secure_password validates :password, presence: true, length: { minimum: 6 }, allow_nil:true # 渡された文字列のハッシュ値を返す def User.digest(string) cost = ActiveModel::SecurePassword.min_cost ? BCrypt::Engine::MIN_COST : BCrypt::Engine.cost BCrypt::Password.create(string, cost: cost) end # ランダムなトークンを返す def User.new_token SecureRandom.urlsafe_base64 end # 永続セッションのためにユーザーをデータベースに記憶する def remember self.remember_token = User.new_token update_attribute(:remember_digest, User.digest(remember_token)) end # 渡されたトークンがダイジェストと一致したらtrueを返す def authenticated?(attribute, token) digest = send("#{attribute}_digest") return false if digest.nil? BCrypt::Password.new(digest).is_password?(token) end # ユーザーのログイン情報を破棄する def forget update_attribute(:remember_digest, nil) end # アカウントを有効にする def activate update_columns(activated: true, activated_at: Time.zone.now) end # 有効化用のメールを送信する def send_activation_email UserMailer.account_activation(self).deliver_now end private #メールアドレスを全て小文字にする def downcase_email self.email = email.downcase end #有効化トークンとダイジェストを作成および代入する def create_activation_digest self.activation_token = User.new_token self.activation_digest = User.digest(activation_token) end end
試したこと
以下のサイトのことは実践しました。
https://qiita.com/yfuzii/items/ec563542c86199cb9060
↑にあるように、herokuのmigrateステータスには、Add activation to usersがありました。
heroku restartで解決するかと思いましたが、解決には至りませんでした。
testはgreenです。
補足情報
思いつく限り記載しましたが、足りない情報があれば、すぐにご連絡いたします。
初心者で分かりにくい質問で申し訳ありませんが、ご協力頂けますと幸いです。
回答1件
あなたの回答
tips
プレビュー