> ## 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

> Configure the SMS channel in Novu Framework to send text message notifications through providers like Twilio, Vonage, MessageBird, and Plivo.

Novu makes SMS notifications simple, scalable, and reliable, enabling seamless integration with your communication stack. Whether you're sending OTPs, updates, or transactional messages, Novu ensures your SMS notifications are delivered efficiently and effectively.

Learn more about the [SMS Channel](/platform/integrations/sms).

```tsx theme={null}
await step.sms('sms', async () => {
  return {
    body: 'A new post has been created',
  };
});
```
