mail-parser 0.11.2

Fast and robust e-mail parsing library for Rust
Documentation
[
  {
    "header": " one item  \n",
    "expected": [
      "one item"
    ]
  },
  {
    "header": "simple, list\n",
    "expected": [
      "simple",
      "list"
    ]
  },
  {
    "header": "multi \r\n list, \r\n with, cr lf  \r\n",
    "expected": [
      "multi list",
      "with",
      "cr lf"
    ]
  },
  {
    "header": "=?iso-8859-1?q?this is some text?=, in, a, list, \n",
    "expected": [
      "this is some text",
      "in",
      "a",
      "list"
    ]
  },
  {
    "header": " =?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?=\n     =?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRoZSBleGFtcGxlLg==?=\n , but, in a list, which, is, more, fun!\n",
    "expected": [
      "If you can read this you understand the example.",
      "but",
      "in a list",
      "which",
      "is",
      "more",
      "fun!"
    ]
  },
  {
    "header": "=?ISO-8859-1?Q?a?= =?ISO-8859-1?Q?b?=\n , listed\n",
    "expected": [
      "ab",
      "listed"
    ]
  },
  {
    "header": "ハロー・ワールド, and also, ascii terms\n",
    "expected": [
      "ハロー・ワールド",
      "and also",
      "ascii terms"
    ]
  }
]