Use Python to:
- send a plain text email
- send an email with attachment
- receive and filter emails according to some criteria
import re | |
import email.charset | |
from pathlib import Path | |
from glob import glob | |
from email import message_from_binary_file, policy | |
RE_QUOPRI_BS = re.compile(r'\b=20=\n') | |
RE_QUOPRI_LE = re.compile(r'\b=\n') | |
RE_LONG_WORDS = re.compile(r'\b[\w\/\+\=\n]{72,}\b') |
Use Python to:
config.json | |
reading-image.png |