Guest User

Untitled

a guest
Feb 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. export default function sendNotification(name, email, text, number, host, emailNotification, smsNotification, callNotification) {
  2.  
  3. if(emailNotification) {
  4. sendEmail(name, email, text);
  5. }
  6. if (smsNotification) {
  7. sendSms(number,text, name);
  8. }
  9. if (callNotification) {
  10. sendVoice(number,host, name, text);
  11. }
  12. }
Add Comment
Please, Sign In to add comment