Skip to main content
The Deno 2 Release Candidate is here
Learn more

sms

Setup

Deno

import { sendMessage } from 'https://den.ooo/sms'

Node.js

npm i @boywithkeyboard/sms
import { sendMessage } from '@boywithkeyboard/sms'

Usage

Important

You need to open a GatewayAPI account first to use this module.

const response = await sendMessage({
  token: '...',
  sender: 'Your company',
  message: '123456 is your verification code.',
  to: 491759999999 // +49 175 9999999
})