sms step allows you to send text messages to your users’ mobile devices through various SMS providers.
Example Usage
SMS Step Output
SMS Step Result
Thesms step does not return any result object.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use the SMS step in Novu Framework to send text messages through providers like Twilio, Vonage, and MessageBird as part of a workflow.
sms step allows you to send text messages to your users’ mobile devices through various SMS providers.
await step.sms('verification', async () => {
return {
body: 'Your verification code is: 123456',
};
});
| Property | Type | Required | Description |
|---|---|---|---|
| body | string | Yes | The text message content to be sent |
sms step does not return any result object.Was this page helpful?