├── LICENSE ├── README.md ├── assets ├── mailbox.png └── notifyemail_structure.png ├── example ├── notify_example.py ├── notify_example_compatible.py ├── result_folder │ ├── to_be_compress_1.txt │ └── to_be_compress_2.txt └── send_package.py ├── notifyemail ├── __init__.py ├── notify_backend.py ├── notify_frontend.py └── tools.py ├── smtp_usage.md └── smtp_usage_chinese.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/README.md -------------------------------------------------------------------------------- /assets/mailbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/assets/mailbox.png -------------------------------------------------------------------------------- /assets/notifyemail_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/assets/notifyemail_structure.png -------------------------------------------------------------------------------- /example/notify_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/example/notify_example.py -------------------------------------------------------------------------------- /example/notify_example_compatible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/example/notify_example_compatible.py -------------------------------------------------------------------------------- /example/result_folder/to_be_compress_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/example/result_folder/to_be_compress_1.txt -------------------------------------------------------------------------------- /example/result_folder/to_be_compress_2.txt: -------------------------------------------------------------------------------- 1 | this 2 | is 3 | the 4 | second 5 | file 6 | to 7 | be 8 | compressed 9 | . -------------------------------------------------------------------------------- /example/send_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/example/send_package.py -------------------------------------------------------------------------------- /notifyemail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/notifyemail/__init__.py -------------------------------------------------------------------------------- /notifyemail/notify_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/notifyemail/notify_backend.py -------------------------------------------------------------------------------- /notifyemail/notify_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/notifyemail/notify_frontend.py -------------------------------------------------------------------------------- /notifyemail/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/notifyemail/tools.py -------------------------------------------------------------------------------- /smtp_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/smtp_usage.md -------------------------------------------------------------------------------- /smtp_usage_chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsqqqq/notifyemail/HEAD/smtp_usage_chinese.md --------------------------------------------------------------------------------