exchanger

0.1.1 • Public • Published

Query Microsoft's Exchange Web Services. Only tested on Microsoft Exchange 2010.

Install

Install with npm:

npm install exchanger

Module

exchanger.initialize(settings, callback)

  var exchanger = require('exchanger');
  retriever.initialize({ url: 'webmail.example.com', username: 'username', password: 'password' }, function(err) {
    console.log('Initialized!');
  });

exchanger.getEmails(folderName, limit, callback)

  var exchanger = require('exchanger');
  retriever.initialize({ url: 'webmail.example.com', username: 'username', password: 'password' }, function(err) {
    exchanger.getEmails('inbox', 50, function(err, emails) {
      console.log(emails);
    });
  });

Readme

Keywords

none

Package Sidebar

Install

npm i exchanger

Weekly Downloads

15

Version

0.1.1

License

MIT

Last publish

Collaborators

  • adamghill