Use Python to:
- send a plain text email
- send an email with attachment
- receive and filter emails according to some criteria
| config.json | |
| reading-image.png |
Use Python to:
| 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') |