Skip to content

Instantly share code, notes, and snippets.

@infobipdev
Last active August 18, 2023 06:46
Show Gist options
  • Save infobipdev/ab723c179da71f77a690d27c74cdf7b2 to your computer and use it in GitHub Desktop.
Save infobipdev/ab723c179da71f77a690d27c74cdf7b2 to your computer and use it in GitHub Desktop.
Send basic SMS message
try {
const infobipResponse = await infobipClient.channels.sms.send({
type: 'text',
messages: [{
destinations: [
{
to: '447123456789',
},
],
from: 'Infosum SDK Test',
text: 'Hello World',
}],
});
} catch (error) {
console.error(error);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment