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

boywithkeyboard/sms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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