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_modules
andbower_components
npm install
bower install
-
Add your AWS IAM credentials
- Create a new file named
.env
in the project's root directory (same directory as.env.example
) - Copy contents of
.env.example
into the newly created.env
file - Fill in the
.env
file with your corresponding AWS IAM credentials (Note: the .env file is included in the.gitignore
file for security purposes)
- Create a new file named
-
Start the server. (Note: You must have your IAM credentials properly set up in the
.env
file 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!