Skip to content

Instantly share code, notes, and snippets.

View messerzen's full-sized avatar

Paulo Henrique Zen Messerschmidt messerzen

View GitHub Profile
@messerzen
messerzen / decode_email.py
Created November 10, 2022 01:01 — forked from sdkn104/decode_email.py
Python script to decode email
import imaplib, email, email.parser, email.policy
import html2text
import pprint, sys
#
# Utilities for Debug
#
pp = pprint.PrettyPrinter(indent=4, width=80)
def myprint(str):