Popularity
3.0
Declining
Activity
0.0
Stable
47
4
8

Programming language: Go
License: MIT License
Tags: Utilities    

mp alternatives and similar packages

Based on the "Utilities" category.
Alternatively, view mp alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of mp or a related project?

Add another 'Utilities' Package

README

mp - mail parser Build Status

mp is a simple cli email parser. It currently takes stdin and outputs JSON.

Example:

cat fixtures/test.eml | mp
{
  "Text": "Hello world!",
  "Html": "\u003cb\u003eHello world!\u003c/b\u003e",
  "Headers": {
    "Content-Type": "multipart/mixed; boundary=\"----mailcomposer-?=_1-1402581589619\"",
    "From": "\"Me\" \[email protected]\u003e",
    "Mime-Version": "1.0",
    "To": "\"First Receiver\" \[email protected]\u003e, [email protected]",
    "X-Mailer": "Nodemailer 1.0"
  },
  "From": [
    {
      "Name": "Me",
      "Address": "[email protected]"
    }
  ],
  "To": [
    {
      "Name": "First Receiver",
      "Address": "[email protected]"
    },
    {
      "Name": "",
      "Address": "[email protected]"
    }
  ],
  "Cc": null,
  "Priority": "normal",
  "Attachments": [
    {
      "ContentType": "text/plain",
      "Filename": "dummyFile.txt",
      "Disposition": "attachment"
    }
  ]
}