diff --git a/templates/ezmail/LICENSE b/templates/ezmail/LICENSE
new file mode 100644
index 0000000..2434508
--- /dev/null
+++ b/templates/ezmail/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2024 Dita Aji Pratama
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/templates/ezmail/README.md b/templates/ezmail/README.md
new file mode 100644
index 0000000..30928a5
--- /dev/null
+++ b/templates/ezmail/README.md
@@ -0,0 +1,39 @@
+# CostaPy Template - EzMail
+A simple CostaPy email template.
+Email template create by [Colorlib](https://github.com/ColorlibHQ/email-templates/tree/master/10).
+
+## Usage
+
+- Put the folder in your templates directory
+- Add to handler
+
+ import templates.ezmail.main as ezmail
+
+ kwargs["mako"] = {
+ "email" : ezmail.main(directory.page["email"], "verification") # page_directory, file_name
+ }
+
+- Define a necessary variable on your modules function
+
+ title = "CostaPy"
+ heading = title
+ image = "https://sample.com/logo.png"
+ unsubscribe = "https://sample.com/unsubscribe"
+
+ message = "Please verify your email"
+ link = "https://sample.com/verify"
+
+- Set a template on your modules function
+
+ from mako.template import Template
+
+ interface = Template(params["mako"]["email"]['template']).render(
+ title = title,
+ heading = heading,
+ image = image,
+ unsubscribe = unsubscribe,
+ container = Template(params["mako"]["email"]['container']).render(
+ message = message,
+ link = link
+ )
+ )
diff --git a/templates/ezmail/html/template.html b/templates/ezmail/html/template.html
new file mode 100644
index 0000000..ce965ec
--- /dev/null
+++ b/templates/ezmail/html/template.html
@@ -0,0 +1,372 @@
+
+
+