shou2017.com
JP / EN

rails、メール認証機能をつける

Mon Aug 7, 2017
Sat Aug 10, 2024

ローカル環境の設定

とりあえず、ローカル環境の設定gem letter_opener_webをインストールする。

group :development do
  gem 'letter_opener_web'
end

routes.rbの設定

# routes.rb
if Rails.env.development?
  mount LetterOpenerWeb::Engine, at: "/letter_opener"
end

config/environments/development.rbの設定

config.action_mailer.default_url_options = { host: 'localhost:3000' }
config.action_mailer.delivery_method = :letter_opener_web

以上で終わり。あとは、localhost:3000/letter_openerにアクセスする。

herokuを使った本番環境の設定

sendridを使います。プラグインの導入。

$ heroku addons:create sendgrid:starter

herokuにクレジットカードを登録してないとこの時点で、エラーが表示されるので、その場合は、herokuでクレジットカードを登録します。

Sendgridの設定

SENDGRID_USERNAMESENDGRID_PASSWORDを調べる。

$ heroku config:get SENDGRID_USERNAME
$ heroku config:get SENDGRID_PASSWORD

config/environments/production.rbを設定

config.action_mailer.default_url_options = { host: '自分のHerokuアプリのドメイン' }
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings =
{
 user_name: ENV['SENDGRID_USERNAME'],
 password: ENV['SENDGRID_PASSWORD'],
 domain: "heroku.com",
 address: "smtp.sendgrid.net",
 port: 587,
 authentication: :plain,
 enable_starttls_auto: true
}

環境変数の設定

$ heroku config:set SENDGRID_USERNAME=ユーザー名
$ heroku config:set SENDGRID_PASSWORD=パスワード

ちゃんとできた確認。

$ heroku config

config/initializers/devise.rb

config.mailer_senderの値を’noreply@yourdomain’に変更する。

新規登録した際に認証メールが送信されるようにする

user.rbに:confirmableを追加。

class User < ActiveRecord::Base  
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable, :confirmable
end

最低限のメール認証に必要なカラムを追加

$ rails g migration add_confirmable_to_devise

できたファイルを全部消して下のをコピペ

class AddConfirmableToDevise < ActiveRecord::Migration
  def up
    add_column :users, :confirmation_token, :string
    add_column :users, :confirmed_at, :datetime
    add_column :users, :confirmation_sent_at, :datetime
    add_column :users, :unconfirmed_email, :string
    add_index :users, :confirmation_token, unique: true
    # User.reset_column_information # Need for some types of updates, but not for update_all.

    execute("UPDATE users SET confirmed_at = NOW()")
  end

  def down
    remove_columns :users, :confirmation_token, :confirmed_at, :confirmation_sent_at
    remove_columns :users, :unconfirmed_email # Only if using reconfirmable
  end
end

migration fileを編集後rake db:migrateを実行

See Also