> ## Documentation Index
> Fetch the complete documentation index at: https://docs.novu.co/llms.txt
> Use this file to discover all available pages before exploring further.

# SMS

> Use the SMS step in Novu Framework to send text messages through providers like Twilio, Vonage, and MessageBird as part of a workflow.

The `sms` step allows you to send text messages to your users' mobile devices through various SMS providers.

## Example Usage

```tsx theme={null}
await step.sms('verification', async () => {
  return {
    body: 'Your verification code is: 123456',
  };
});
```

## SMS Step Output

| Property | Type   | Required | Description                         |
| -------- | ------ | -------- | ----------------------------------- |
| body     | string | Yes      | The text message content to be sent |

## SMS Step Result

The `sms` step does not return any result object.
