SMTPFury is a Python written application that can handle a large list of emails and send messages using a SMTP connection. The code and part of the design is inspired by a very old project that was a simple commandline script. SMTPFury is designed to look relatively minimalistic, be simple to use and be efficient.
Operation is extremely easy. Modify the files provided containing the SMTP details and provide the program with a list of emails then just press the "Start" button.
The application uses a config structure that goes as follows:
- Name of the file containing the emails, make sure each one is on a separate line, the script will take care of the rest.
- Title of the email itself.
- Name of the HTML file that will act as the body of the email being sent.
- SMTP host name
- Your SMTP username (or email address)
- SMTP password
- SMTP port
All of these settings can ofcourse be manually inputed inside the program and you can save them inside a config. A functioning config should look something like:
Thanks to hoffstadt for making his dearpygui project available which I relied on when developing this project.
His GitHub: https://github.com/hoffstadt DearPyGui: https://github.com/hoffstadt/DearPyGui