├── .gitattributes ├── .gitignore ├── README.md ├── email_scraper ├── EmailScraper.py └── __init__.py ├── mailspotter ├── __init__.py ├── forms.py ├── models.py ├── routes.py ├── site.db ├── static │ ├── bootstrap.min.css │ ├── main.css │ └── profile_pics │ │ ├── 44de160ff44d9cbd.jpg │ │ └── default.jpg └── templates │ ├── account.html │ ├── dashboard.html │ ├── home.html │ ├── layout.html │ ├── login.html │ ├── register.html │ ├── search-email.html │ └── send_mail.html ├── requirements.txt └── run.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/README.md -------------------------------------------------------------------------------- /email_scraper/EmailScraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/email_scraper/EmailScraper.py -------------------------------------------------------------------------------- /email_scraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mailspotter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/__init__.py -------------------------------------------------------------------------------- /mailspotter/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/forms.py -------------------------------------------------------------------------------- /mailspotter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/models.py -------------------------------------------------------------------------------- /mailspotter/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/routes.py -------------------------------------------------------------------------------- /mailspotter/site.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/site.db -------------------------------------------------------------------------------- /mailspotter/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/static/bootstrap.min.css -------------------------------------------------------------------------------- /mailspotter/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/static/main.css -------------------------------------------------------------------------------- /mailspotter/static/profile_pics/44de160ff44d9cbd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/static/profile_pics/44de160ff44d9cbd.jpg -------------------------------------------------------------------------------- /mailspotter/static/profile_pics/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/static/profile_pics/default.jpg -------------------------------------------------------------------------------- /mailspotter/templates/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/templates/account.html -------------------------------------------------------------------------------- /mailspotter/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/templates/dashboard.html -------------------------------------------------------------------------------- /mailspotter/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/templates/home.html -------------------------------------------------------------------------------- /mailspotter/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/templates/layout.html -------------------------------------------------------------------------------- /mailspotter/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/templates/login.html -------------------------------------------------------------------------------- /mailspotter/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/templates/register.html -------------------------------------------------------------------------------- /mailspotter/templates/search-email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/templates/search-email.html -------------------------------------------------------------------------------- /mailspotter/templates/send_mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/mailspotter/templates/send_mail.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nayeemnazmul/MailSpotter/HEAD/run.py --------------------------------------------------------------------------------