diff --git a/CHANGELOG.md b/CHANGELOG.md
index 69b12d1..29483be 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,8 @@
 All notable changes to the "Go-Web Framework" will be documented in this file.
 
 ## [Unreleased]
+### Removed
+- Removed Mail struct from configuration
 
 ## [v0.6-3-beta] - 2021-08-27
 ### Fixed
diff --git a/kernel/config.go b/kernel/config.go
index 796efe1..31222cd 100644
--- a/kernel/config.go
+++ b/kernel/config.go
@@ -23,13 +23,6 @@ type Conf struct {
 	App struct {
 		Key string `yaml:"key"`
 	} `yaml:"app"`
-	Mail struct {
-		From     string `yaml:"from"`
-		Host     string `yaml:"host"`
-		Username string `yaml:"username"`
-		Password string `yaml:"password"`
-		Port     int    `yaml:"port"`
-	} `yaml:"mail"`
 }
 
 // RetrieveRoutingConf will parse router.yml file (present in Go-Web root dir) and return a Router structure.