feat: send_mail

This commit is contained in:
Ahmet Kaan GÜMÜŞ 2024-12-18 04:53:14 +03:00
parent b3b93ab0cc
commit 032a19931d
5 changed files with 101 additions and 14 deletions

View file

@ -16,9 +16,10 @@ strip = "symbols"
[dependencies]
axum = "0.7.9"
chrono = { version = "0.4.38", features = ["serde"] }
serde = { version = "1.0.215", features = ["derive"] }
chrono = { version = "0.4.39", features = ["serde"] }
lettre = { version = "0.11.11", default-features = false, features = ["builder", "smtp-transport", "tokio1-rustls-tls"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
sqlx = { version = "0.8.2", features = ["chrono", "macros", "postgres", "runtime-tokio-rustls"] }
tokio = { version = "1.41.1", features = ["full"] }
tokio = { version = "1.42.0", features = ["rt-multi-thread"] }
tower-http = { version = "0.6.2", features = ["cors"] }