Skip to content

Instantly share code, notes, and snippets.

View ixna's full-sized avatar
:octocat:
Emergency Retreat

Isna Rahmatul ixna

:octocat:
Emergency Retreat
View GitHub Profile
@ixna
ixna / main.rs
Created October 5, 2021 08:12 — forked from frankyxhl/main.rs
Rust send smtp email by Zoho code example
// === In Cargo.toml file======
// lettre = "0.9.2"
// lettre_email = "0.9.2"
// native-tls = "0.2.3"
// ============================
use lettre_email::Email;
use lettre::smtp::authentication::Credentials;
use lettre::{ClientSecurity, ClientTlsParameters, SmtpClient, Transport};
use native_tls::TlsConnector;