Guest User

Untitled

a guest
Jul 17th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. ActionMailer::Base.raise_delivery_errors = true
  2. ActionMailer::Base.delivery_method = :smtp
  3. ActionMailer::Base.smtp_settings = {
  4. :tls => true,
  5. :enable_starttls_auto => true,
  6. :address => "smtp.gmail.com",
  7. :port => '587',
  8. :domain => "domainname.tld",
  9. :authentication => :plain,
  10. :user_name => "user@domain.tld",
  11. :password => "yourpassword"
  12. }
Add Comment
Please, Sign In to add comment