Initial Implementation of EmailService and Ignores EnvFile

This commit is contained in:
2024-02-25 02:43:55 -03:00
parent d4bd9c6c5e
commit 0dcb35e718
8 changed files with 388 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
axum = "0.7.4"
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }
tokio = { version = "1.0.0", features = ["full"] }
uuid = "1.7.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_with = "3.6.1"
@@ -19,3 +19,4 @@ serde_json = "1.0.114"
cached = "0.49.2"
dotenv = "0.15.0"
log = "0.4.20"
lettre = { version = "0.11.4", default-features = false, features = ["smtp-transport", "tokio1-rustls-tls", "hostname", "builder"] }