├── .gitignore ├── 01_send_plain_text.py ├── 02_send_html.py ├── 03_send_attachments.py ├── README.md ├── attachments ├── girl.jpg ├── nmap.pdf ├── some_text.txt ├── track1.mp3 └── Открой меня.txt └── email_template.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | venv/ 3 | *.pyc 4 | .vscode/ 5 | .DS_Store -------------------------------------------------------------------------------- /01_send_plain_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/python_send_email/HEAD/01_send_plain_text.py -------------------------------------------------------------------------------- /02_send_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/python_send_email/HEAD/02_send_html.py -------------------------------------------------------------------------------- /03_send_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/python_send_email/HEAD/03_send_attachments.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/python_send_email/HEAD/README.md -------------------------------------------------------------------------------- /attachments/girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/python_send_email/HEAD/attachments/girl.jpg -------------------------------------------------------------------------------- /attachments/nmap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/python_send_email/HEAD/attachments/nmap.pdf -------------------------------------------------------------------------------- /attachments/some_text.txt: -------------------------------------------------------------------------------- 1 | Hello friend! -------------------------------------------------------------------------------- /attachments/track1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/python_send_email/HEAD/attachments/track1.mp3 -------------------------------------------------------------------------------- /attachments/Открой меня.txt: -------------------------------------------------------------------------------- 1 | За тобой уже выехали... -------------------------------------------------------------------------------- /email_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/python_send_email/HEAD/email_template.html --------------------------------------------------------------------------------