free-mobile-sms-api
Version:
Free Mobile SMS API - Give you a simplified way to use the official SMS API powered by Free mobile
9 lines (7 loc) • 310 B
text/typescript
import {FreeMobileSmsApi} from "../src";
/// Send one sms at once without using the queue
const sms: FreeMobileSmsApi = new FreeMobileSmsApi()
sms.send(`Hello World!`).then(console.log).catch(console.error)
for(let i = 0; i < 5; i++) {
sms.send(`Hello World ${i}!`).then(console.log).catch(console.error)
}