0.2.0 • Published 10 years ago

mailsearch v0.2.0

Weekly downloads
7
License
MIT
Repository
github
Last release
10 years ago

node-gmail-example

A Simple node-imap and mailparser example

##Usage

var MailSearch = require('mailsearch');

var imapConfig = {
  user: 'hans.wurst@gmail.com',
  password: 'Zwiebelrostbraten',
  host: 'imap.gmail.com',
  port: 993,
  tls: true
}

var ms = new MailSearch( imapConfig );
ms.search('INBOX', [ 'UNSEEN', ['FROM', 'ifttt.com'] ]).then(function(mails) {
  console.log('Total Inbox Count: :', mails.length);
});

License

Copyright (c) 2014 . Licensed under the MIT license.

0.2.0

10 years ago

0.1.0

10 years ago