Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

buzz-expert

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buzz-expert

buzz expert api client

  • 0.0.2
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

What for ?

Send SMS and MMS using Buzz Expert API.

More

Minimalist module. Messages are sent on MARKETING type. Module changes between OADC and label by itself, in case of an SMS or MMS to be pushed.

Warning

Max 2 medias. Media must not be > than 60Ko (500 000 bytes).

How to use it ?

const BEAPI = require('buzz-expert');
const BuzzExpert = new BEAPI({
	login: "login",
	password: "password",
	label: "label created withing your Buzz Expert account, OADC or label is selected by the module itself"
});

BuzzExpert.connect((err) => {
	if (err) return console.error(err);
	
	BuzzExpert.sendMMS('0123456789', [
		{ type: "file", filename: "/var/toto.gif" },
		{ type: "text", content: "Hello World !" }
	], (err) => {
		if (err) return console.error(err);

		console.log("Message sent!");
	});
});

GitHub Repository

Keywords

FAQs

Package last updated on 07 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc