1.1.9 • Published 1 year ago

sendblue v1.1.9

Weekly downloads
3
License
ISC
Repository
github
Last release
1 year ago

Sendblue API

Overview

This package is a node.js wrapper for the Sendblue API. It provides a simple interface for sending and receiving messages.

Prerequisites

You will need to get API keys by signing up for a Sendblue account. You can do so here.

Installation

npm i sendblue

Usage

Initializing

import Sendblue from 'sendblue-node'

// Load your key from an environment variable or secret management service
// (do not include your key directly in your code)
const SENDBLUE_API_KEY = process.env.SENDBLUE_API_KEY
const SENDBLUE_API_SECRET = process.env.SENDBLUE_API_SECRET

const sendblue = new Sendblue(SENDBLUE_API_KEY, SENDBLUE_API_SECRET)

Send Message API Call

;(async () => {
  const response = await sendblue.sendMessage({
    number: '+19998887777',
    content: 'Hello world!',
    send_style: 'invisible',
    media_url: 'https://source.unsplash.com/random.png',
    status_callback: 'https://example.com/message-status/1234abcd'
  })

  console.log(response)
})()

Send Group Message API call

;(async () => {
  const response = await sendblue.sendGroupMessage({
    numbers: ['+19998887777', '+19998887778'],
    content: 'Hello world!',
    send_style: 'invisible',
    media_url: 'https://source.unsplash.com/random.png',
    status_callback: 'https://example.com/message-status/1234abcd'
  })

  console.log(response)
})()

Hint

You can get free api keys for testing & hobby purposes by emailing the team

1.1.1

2 years ago

1.1.9

1 year ago

1.1.8

1 year ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.0.1

4 years ago

1.0.0

4 years ago