A simple Web-UI to manage AWS SES templates.
- Basic templates management: edit, duplicate or delete a given template.
- Integrated Quill editor.
- Supports both Text and HTML templates by toggling between the two modes inside the editor.
- Pagination for users with lots of templates.
- Configure AWS credentials with
aws configure
- (Optioanl) Create a new virtual environment.
- (Optional) Install Docker.
- Clone the repo:
git clone git@github.com:Beinish/SES-Templates-Manager.git
cd
into the folder.- Build the Docker image:
docker build -t ses-template-manager .
- Run the image
docker run -v ~/.aws:/root/.aws -p 8000:8000 ses-template-manager
- Open the UI: http://localhost:8000
- Clone the repo:
git clone git@github.com:Beinish/SES-Templates-Manager.git
cd
into the folder.- Run
pip install -r requirements.txt
- Run
uvicorn backend.main:app --reload
This project is presented "as-is". It's just a hobby project that answered my needs for SES, since AWS does not provide a UI to manage templates (only possible with CLI). If anything breaks, feel free to let me know and I'll do my best to fix it.