Module mail2beyond.parsers
Module that groups all built-in parsers for mail2beyond to use.
Expand source code
"""Module that groups all built-in parsers for mail2beyond to use."""
from . import plain
from . import html
from . import auto
Sub-modules
mail2beyond.parsers.auto
-
Module that contains a parser that automatically selects another parser based on the mail's content-type header.
mail2beyond.parsers.html
-
Module that contains a parser that parses an email's content body as HTML and converts it to a markdown format.
mail2beyond.parsers.plain
-
Module that contains a parser that parse an email's content body as plaintext. This simply extends the mail2beyond.framework.BaseParser class but …