0.1.0 • Published 13 years ago

exchanger v0.1.0

Weekly downloads
21
License
MIT
Repository
github
Last release
13 years ago

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);
    });
  });
0.1.1

13 years ago

0.1.0

13 years ago

0.0.6

14 years ago

0.0.5

14 years ago

0.0.4

14 years ago

0.0.3

14 years ago

0.0.2

14 years ago

0.0.1

14 years ago