Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Latest commit

 

History

History
36 lines (26 loc) · 632 Bytes

readme.md

File metadata and controls

36 lines (26 loc) · 632 Bytes

Warning

This NPM package was superseded by gatewayapi(.js).

sms

Setup

Deno

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

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
})