1.0.1 • Published 5 years ago

freshmail-js v1.0.1

Weekly downloads
9
License
MIT
Repository
github
Last release
5 years ago

FreshMail-JS

Javascript wrapper library for the FreshMail API.

This is a translation from Dariusz Stępniak's FreshMail-Python

Installation

Via npm

npm install freshmail-js

Via yarn

yarn add freshmail-js

Import

ES2015/ES6:

import FreshMail from 'freshmail-js';

const fm = new FreshMail('API_KEY','API_SECRET');

ES5:

const FreshMail = require('freshmail-js');

const fm = new FreshMail('API_KEY','API_SECRET');

Examples