Guest User

Untitled

a guest
Jun 19th, 2018
626
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. #mailer.rb
  2. ActionMailer::Base.delivery_method = :smtp
  3. ActionMailer::Base.default_charset = 'utf-8'
  4. ActionMailer::Base.default_content_type = 'text/html'
  5. # Don't care if the mailer can't send
  6. ActionMailer::Base.raise_delivery_errors = true
  7.  
  8. require "tlsmail"
  9. Net::SMTP.enable_tls(OpenSSL::SSL::VERIFY_NONE)
  10.  
  11. ActionMailer::Base.smtp_settings = {
  12. :address => "smtp.gmail.com",
  13. :port => 587,
  14. :domain => "gmail.es",
  15. :user_name => "reperezz",
  16. :password => "mypassword",
  17. :authentication => :plain
  18. }
Add Comment
Please, Sign In to add comment