rust_smtp_utils 0.1.0

Reusable SMTP helper crate for Rust (lettre-based) with STARTTLS, timeout, and retry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "rust_smtp_utils"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Reusable SMTP helper crate for Rust (lettre-based) with STARTTLS, timeout, and retry."
repository = "https://github.com/Alexandros5880/RUST-SMTP-UTILS"
readme = "README.md"
keywords = ["smtp", "email", "lettre", "mail"]
categories = ["email"]
exclude = [".env", ".env.*"]

[dependencies]
lettre = { version = "0.11", features = ["tokio1-native-tls", "native-tls", "builder", "smtp-transport", "serde"] }

[patch.crates-io]
ar_archive_writer = { path = "vendor/ar_archive_writer" }