0.0.2 • Published 3 years ago

mailnuggets v0.0.2

Weekly downloads
93
License
MIT
Repository
github
Last release
3 years ago

MailNuggets Api Client

Api Client Wrapper for MailNuggets service

Status

Version License

Installation

npm install mailnuggets

How to use

img.png

  • And configure the client with your credentials
const MailNuggets = require('mailnuggets')

const MN = new MailNuggets({
    userId: 'yourUserId',
    apiKey: 'yourApiKey',
    apiSecret: 'yourApiSecret'
});

MN.listEmails()
    .then(result => {
        console.log('Result', result.emails.email[0]);
    })
    .catch(error => {
        console.error('Error', error);
    })