Guest User

Untitled

a guest
Jul 15th, 2018
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # somewhere in your configuration bootstrapping...
  2.  
  3. Mailer.configure(
  4. host: "smtp.gmail.com",
  5. port: 587,
  6. tls: true,
  7. domain: "yourdomain.com",
  8. user: "user@yourdomain.com",
  9. pass: "pass",
  10. auth: :login,
  11. from: "no-reply@yourdomain.com"
  12. )
Add Comment
Please, Sign In to add comment