AhmedSaed26

Send a Twilio WhatsApp template

Apr 6th, 2022
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const accountSid = process.env.TWILIO_ACCOUNT_SID;
  2. const authToken = process.env.TWILIO_AUTH_TOKEN;
  3. const client = require('twilio')(accountSid, authToken);
  4.  
  5. client.messages
  6.   .create({
  7.      from: 'whatsapp:+15005550006',
  8.      body: 'Thank you for participating in MLH Global Hack Week',
  9.      to: 'whatsapp:+14155238886'
  10.    })
  11.   .then(message => console.log(message.sid));
Advertisement
Add Comment
Please, Sign In to add comment