Advertisement
Guest User

Untitled

a guest
Sep 9th, 2017
532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. EOFError: end of file reached
  2.  
  3. ActionMailer::Base.default :from => 'slfwalsh@gmail.com'
  4.  
  5. config.action_mailer.delivery_method = :smtp
  6. config.action_mailer.perform_deliveries = true
  7. config.action_mailer.raise_delivery_errors = true
  8. config.action_mailer.smtp_settings = {
  9. :address => "smtp.gmail.com",
  10. :port => 587,
  11. :domain => '@gmail.com',
  12. :user_name => "xxxxx@gmail.com",
  13. :password => "xxxxxxxx",
  14. :authentication => 'plain',
  15. :enable_starttls_auto => true
  16. }
  17.  
  18. config.action_mailer.default_url_options = { :host => 'localhost:3000' }
  19.  
  20. config.action_mailer.raise_delivery_errors = true
  21.  
  22. config.action_mailer.delivery_method = :smtp
  23.  
  24. config.action_mailer.smtp_settings = {
  25. address: "smtp.gmail.com",
  26. port: 587,
  27. domain: "myprojectdomain.com",
  28. user_name: "xxxx@gmail.com",
  29. password: "xxxx",
  30. authentication: 'plain',
  31. enable_starttls_auto: true
  32. }
  33.  
  34. config.action_mailer.default_url_options = { :host => 'localhost:3000' }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement