@wolfxlabs/burst-sms
v1.0.1
Published
A burstSms wrapper for wolf
Downloads
1
Readme
wolf Burst SMS Provider
A Burst SMS sms provider library for @novu/node
Usage
import { BurstSmsProvider } from '@wolf/burst-sms';
const provider = new BurstSmsProvider({
apiKey: process.env.BURST_SMS_API_KEY, // Your Burst SMS API Key
secretKey: process.env.BURST_SMS_SECRET_KEY, // Your Burst SMS API Secret
})
await provider.sendMessage({
to: '0123456789',
content: 'Message to send',
});