Guest User

Untitled

a guest
May 9th, 2018
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. firebase serve --only functions
  2.  
  3. import * as functions from 'firebase-functions';
  4. import * as nodemailer from 'nodemailer';
  5. const accountname = functions.config().emailaccount.username;
  6. const accountpassword = functions.config().emailaccount.password;
  7. /* smtp configuration */
  8.  
  9. firebase functions:config:set emailaccount.username="email@domain.com"
  10. emailaccount.password="mypassword"
Add Comment
Please, Sign In to add comment