├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE ├── bastion.yml ├── issue_label_bot.yaml └── stale.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── main ├── banner.txt ├── body.txt ├── emailspam.py ├── gmail.txt ├── gmailpass.txt ├── recipientLists.txt └── subject.txt └── requirements.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.github/bastion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/.github/bastion.yml -------------------------------------------------------------------------------- /.github/issue_label_bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/.github/issue_label_bot.yaml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/README.md -------------------------------------------------------------------------------- /main/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/main/banner.txt -------------------------------------------------------------------------------- /main/body.txt: -------------------------------------------------------------------------------- 1 | insert_your_body_here 2 | -------------------------------------------------------------------------------- /main/emailspam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/main/emailspam.py -------------------------------------------------------------------------------- /main/gmail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/main/gmail.txt -------------------------------------------------------------------------------- /main/gmailpass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/main/gmailpass.txt -------------------------------------------------------------------------------- /main/recipientLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxsptz/emailpyspam/HEAD/main/recipientLists.txt -------------------------------------------------------------------------------- /main/subject.txt: -------------------------------------------------------------------------------- 1 | insert_your_subject_here 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tabulate==0.8.6 2 | tqdm==2.2.3 3 | --------------------------------------------------------------------------------