Skip to content

Instantly share code, notes, and snippets.

@mb8z
Last active March 4, 2021 15:55
Show Gist options
  • Save mb8z/cf93ac0c09588f6eec5e9f03a9b8d16c to your computer and use it in GitHub Desktop.
Save mb8z/cf93ac0c09588f6eec5e9f03a9b8d16c to your computer and use it in GitHub Desktop.
const { SMS } = require('automagically');
const send = async () => {
const sms = await SMS.send({
from: { phone: '+44500500500' },
to: [{ phone: 'PHONE_NUMBER_1' }],
body: 'Hello, world!',
});
};
send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment