Guest User

Untitled

a guest
Feb 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. let name = req.body.name
  2. let email = req.body.email
  3. let text = req.body.message
  4. let number = req.body.phone
  5. let host = req.headers.host
  6. let emailNotification = req.body.emailNotification
  7. let smsNotification = req.body.smsNotification
  8. let callNotification = req.body.callNotification
  9.  
  10. validateSendForm(res, name, email, text, number, host, emailNotification, smsNotification, callNotification);
Add Comment
Please, Sign In to add comment