The newest version of Devise doesn\'t have :confirmable enabled by default. I already added the respective columns to the User model but cannot find any code examples of how
For DRY, you can also put mailer config in config/initializers/mail.rb like:
ActionMailer::Base.smtp_settings = { :address => "smtp.gmail.com", :port => 587, :domain => '[redacted]', :user_name => '[redacted]', :password => '[redacted]', :authentication => 'plain', :enable_starttls_auto => true }