1 unstable release
| 0.1.0 | Dec 7, 2025 |
|---|
#166 in Email
Used in oxidite
15KB
322 lines
oxidite-mail
Email sending for Oxidite with SMTP support.
Installation
[dependencies]
oxidite-mail = "0.1"
Usage
use oxidite_mail::*;
let mailer = Mailer::new("smtp.gmail.com", 587)
.auth("[email protected]", "password");
mailer.send(
Email::new()
.to("[email protected]")
.subject("Hello")
.body("Email content")
).await?;
License
MIT
Dependencies
~8–16MB
~289K SLoC