28 lines
907 B
Rust
28 lines
907 B
Rust
use lettre::{transport::smtp::authentication::Credentials, Message, SmtpTransport, Transport};
|
|
|
|
fn main() {
|
|
tracing_subscriber::fmt::init();
|
|
|
|
let email = Message::builder()
|
|
.from("NoBody <nobody@domain.tld>".parse().unwrap())
|
|
.reply_to("Yuin <yuin@domain.tld>".parse().unwrap())
|
|
.to("Hei <hei@domain.tld>".parse().unwrap())
|
|
.subject("Happy new year")
|
|
.body(String::from("Be happy!"))
|
|
.unwrap();
|
|
|
|
let creds = Credentials::new("smtp_username".to_string(), "smtp_password".to_string());
|
|
|
|
// Open a remote connection to gmail using STARTTLS
|
|
let mailer = SmtpTransport::starttls_relay("smtp.gmail.com")
|
|
.unwrap()
|
|
.credentials(creds)
|
|
.build();
|
|
|
|
// Send the email
|
|
match mailer.send(&email) {
|
|
Ok(_) => println!("Email sent successfully!"),
|
|
Err(e) => panic!("Could not send email: {:?}", e),
|
|
}
|
|
}
|