# @novu/ring-central

> A ring-central wrapper for novu

Latest version **0.24.1** (published 2024-04-05) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install @novu/ring-central
pnpm add @novu/ring-central
yarn add @novu/ring-central
bun add @novu/ring-central
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.24.1 |
| Published | 2024-04-05 |
| First published | 2024-03-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 2 |
| Unpacked size | 32.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 39694 |
| Maintainers | letitrock, scopsy |

## Links

- npm: https://www.npmjs.com/package/@novu/ring-central
- Repository: https://github.com/novuhq/novu
- Homepage: https://github.com/novuhq/novu#readme
- Issues: https://github.com/novuhq/novu/issues
- npm.io page: https://npm.io/package/@novu/ring-central

## Dependencies (2)

- [@novu/stateless](https://npm.io/package/@novu/stateless.md) ^0.24.1
- [@ringcentral/sdk](https://npm.io/package/@ringcentral/sdk.md) ^5.0.1

## Recent versions

- 0.24.1 (latest) — 2024-04-05
- 0.24.0 — 2024-03-06

## README

# Novu RingCentral Provider

A RingCentral sms provider library for [@novu/node](https://github.com/novuhq/novu)

## Usage

```javascript
import { RingCentralSmsProvider } from '@novu/ringcentral';

const provider = new RingCentralSmsProvider({
  clientId: process.env.RINGCENTRAL_CLIENT_ID,
  clientSecret: process.env.RINGCENTRAL_CLIENT_SECRET,
  isSandBox: process.env.RINGCENTRAL_IS_SANDBOX, // OPTIONAL: defaults to false
  jwtToken: process.env.RINGCENTRAL_JWT_TOKEN,
  from: process.env.RINGCENTRAL_FROM_NUMBER, // a valid ringcentral phone number
});

await provider.sendMessage({
  to: '0123456789',
  content: 'Message to send',
});
```

---
_Source: https://npm.io/package/@novu/ring-central · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
