Currently AWS SES has a set of API endpoints to manipulate email templates, however, it lacks a front-end UI to perform such tasks. I've created a simple UI interface for managing AWS Simple Email Service templates. Enjoy :)
- Basic CRUD API interactions with SES Template API
-
Clone or download project
-
Open terminal in the project directory
-
Install
node_modulesandbower_components
npm install bower install -
Add your AWS IAM credentials
- Create a new file named
.envin the project's root directory (same directory as.env.example) - Copy contents of
.env.exampleinto the newly created.envfile - Fill in the
.envfile with your corresponding AWS IAM credentials (Note: the .env file is included in the.gitignorefile for security purposes)
- Create a new file named
-
Start the server. (Note: You must have your IAM credentials properly set up in the
.envfile for the server to run) To start the server, while in the project's root directory, type the following command:
nodemon or
npm start - Go to
localhost:9000(enjoy!)
So easy, you can learn it all by watching this 54 second video!
