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

unisender

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unisender

Promise-based wrapper for unisender api

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

node-unisender

Promise-based wrapper for UniSender API. Sends POST request to UniSender.

Build Status Test Coverage Code Climate Dependency Status Version Downloads

List of available in module methods is in src/config/methods.js.

Installation

npm install unisender

Usage

You can send request to unisender API via calling function of unisender object with appropriate name:

unisender.<method name>(options);

for example

var UniSender = require('unisender');

var uniSender = new UniSender({
	api_key: 'YOUR_API_KEY',
	lang: 'ru'                // optional, 'en' by default
});

uniSender.getLists().then(console.log);

uniSender.createEmailMessage({
	sender_name: 'Test',
	sender_email: 'admin@example.com',
	subject: 'hello',
	body: '<h1>Hello world!</h1>',
	list_id: 1234567
}).then(function (response) {
	console.log('Message id: ' + response.result.message_id);
}).catch(function (response) {
	console.log('Error:' + response.error);
});

Full list of UniSender methods and options you can find in UniSender API Documentation.

Note

For all methods except importContacts you have to pass parameters as described in UniSender API Documentation.

To call importContacts specify properties field_names and data in another way:

uniSender.importContacts({
	field_names: ['email', 'email_list_ids'],
	data: [
		{ email: 'test1@example.com', email_list_ids: '1, 2, 3' },
		{ email: 'test2@example.com', email_list_ids: '1' },
		{ email: 'test3@example.com', email_list_ids: '3' },
	]
});

They'll be transformed into

field_names[0]=email&field_names[1]=email_list_ids
&data[0][0]=test1@example.com&data[0][1]=1,2,3
&data[1][0]=test2@example.com&data[1][1]=1
&data[2][0]=test3@0example.com&data[2][1]=3

Keywords

FAQs

Package last updated on 28 May 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