Guest User

Untitled

a guest
Nov 7th, 2017
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. var smtp = nodemailer.createTransport({
  2. host: 'mail.privateemail.com',
  3. port: 25,
  4. auth: {
  5. user: 'contact@myemail.com',
  6. pass: 'mypassword'
  7. }
  8. });
  9.  
  10. Outgoing server (SMTP): port 465 for SSL, port 587 for TLS/STARTTLS
  11.  
  12. Outgoing server authentication should be switched on,
  13. SPA (secure password authentication) must be disabled.
Add Comment
Please, Sign In to add comment