This is an app which provides templates for the content of email and let you edit and save them for future use
The file tab where you will get the templates
- Python
- HTML
- CSS
- Javascript
-
Download the installer and install the software from here (Windows Version is available only as of now)
-
Clone the repository
-
Install all the requirements by
pip install requirements.txt
- Run the application by
python main.py
- Close the application by pressing Ctrl+C in terminal
- Close all the browsers if opened
- Run the application again
- The window is expected to open this time
- After the window has opened, you can open the browsers again
-
OSError: [WinError 10048] Only one usage of each socket address (protocol/network address/port) is normally permitted: ('localhost', 8001)
- Open the main.py file
- Go to line number 13
- Change the port number from 8001 to some other number (Number between 8000 and 9000 would be most suitable)
PORT = 8001 # Change this port number
- Save the file
- Run again
- Open Task Manager
- Check for which app is using the same port number (8001)
- You can end the task of that app if it's not needed anymore
- Run main.py again