0.2.2 • Published 7 years ago

rx-imap v0.2.2

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

rx-imap

Just a node-imap wrapper

Why use this

  • Fetch messages from very large mailboxes.
  • Restarts on error.
  • Fetches in parallel.

Install

npm i rx-imap -S

How to use

const RxImap = require('rx-imap');

const imap = new RxImap({
    instances: 32,
    timeout: 3000,
});

const account = {
    user: 'seomeone@host.com'
    host: 'imap.host.com',
    password: 'password@123',
    port: 993
};

const field = 'HEADER.FIELDS (REPLY-TO)';

imap.get(account, field, 'INBOX')
    .subscribe(x => console.log(x));
0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.0

7 years ago