Skip to content

ReticleSoftware/sms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SMS

Send SMS messages via Twilio.

Built With

Getting Started

This project is released as both a module and a CLI tool.

Installation

For Use in Projects

npm install @reticlesoftware/sms

For Use in CLI

npm install -g @reticlesoftware/sms

Usage

const { sms } = require('@reticlesoftware/sms');

sms({
  twilioAccountSid,
  twilioAuthToken,
  toPhoneNumber,
  fromPhoneNumber,
  message,
});

or

sms --to 5555555555 --message "Your message"