Skip to content

Instantly share code, notes, and snippets.

@aleyrizvi
Last active December 23, 2020 19:50
Show Gist options
  • Save aleyrizvi/f3a1c072e949f4dd8e0af45506e701bf to your computer and use it in GitHub Desktop.
Save aleyrizvi/f3a1c072e949f4dd8e0af45506e701bf to your computer and use it in GitHub Desktop.
const nomadoClient = require('nomado');
const nomado = new nomadoClient({'USERNAME', 'PASSWORD'});
const smsOptions = {
to: ['3245678901'],
message: 'Hello world',
unicode: false
};
nomado.sms.send(smsOptions)
.then((response) => {
// ....
})
.catch((error) => {
// ... error
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment