I've searched through a bunch of other posts about how to fix the STARTTLS error but everything I've tried doesn't seem to work. Can anyone help??? development.rb:
<br> require 'starttls'
<br> config.action_mailer.smtp_settings = {
<br> enable_starttls_auto: true,
<br> address: "smtp.gmail.com",
<br> port: 587,
<br> domain: "gmail.com",
<br> authentication: :plain,
<br> user_name: "myusername without the '@' and domain",
<br> password: "mypassword"
<br> }
<br> config.consider_all_requests_local = true
<br> config.action_mailer.default_url_options = {host: 'localhost:3000' }
<br> #Enable/disable caching. By default caching is disabled.
<br> config.action_mailer.delivery_method = :smtp config.action_mailer.perform_deliveries = true config.action_mailer.raise_delivery_errors= true
Inside of my devise.rb:
<br> config.mailer = 'Devise::Mailer'
<br> config.parent_mailer = 'ActionMailer::Base'
&#13;
ruby 2.3.3p222 (2016-11-21 revision 56859) [i386-mingw32]
Rails 5.1.5