Skip to content

ahw/rfc822-json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rfc822-json

Parses an RFC-822 message stream (standard email) into JSON and returns a readable JSON stream. The final JSON object will have a headers property which contains the message headers in key-value form and a body object which contains the raw message body (no decoding or anything like that).

If the message contains multiple header lines with the same name, the property value in the final headers will be an array. For example:

"headers": {
    "Content-Type": "text/plain",
    "Received": ["by 0.1.2.3", "by 6.7.8.9"],
    "Content-Length": 98723
}

Most of this code example is borrowed from the inbox documentation. That last line at the bottom where the message stream is piped to an instance of the Rfc822 parser is where rfc822-json comes in to play. It is a Readable/Writable stream which accepts a stream of RFC-822-compliant text and writes a stream of JSON-formatted text.

var inbox = require('inbox');
var Rfc822Parser = require('rfc822-json');
var parser = new Rfc822Parser();

var client = inbox.createConnection(false, "imap.gmail.com", {
    secureConnection: true,
    auth:{
        user: "test.nodemailer@gmail.com",
        pass: "Nodemailer123"
    }
});

client.on('connect', function() {
    client.openMailbox('INBOX', function(error, info) {
        // Pipe stream to parser, which returns readable stream. If this
        // was a server response you might turn this into
        // (...blah...).pipe(parser).pipe(response);
        client.createMessageStream('123').pipe(parser);

        parser.on('message', function(message) {
            // Message has two properties: "headers" and "body".

            console.log(message.headers);
            // => {
            //      "Delivered-To": "someone@example.com",
            //      "Subject": "hey there",
            //      "From": "\"John Smith\" <johnsmith@example.com>",
            //      "Content-Type": "multipart/alternative; boundary=\"----=_NextPart_000_1CE1_01CF04FE.9EA32510\""
            //    }

            console.log(message.body);
            // => "This is the message body\r\n. It is just a giant string with no additional parsing/decoding applied."
        });
    });
});

About

Library for transforming an RFC-822 (email) stream into a JSON stream.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published