use async_smtp::{EmailAddress, Envelope, SendableEmail, SmtpClient};
fn main() {
env_logger::init();
async_std::task::block_on(async move {
let email = SendableEmail::new(
Envelope::new(
Some(EmailAddress::new("user@localhost".to_string()).unwrap()),
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
)
.unwrap(),
"id".to_string(),
"Hello ß☺ example".to_string().into_bytes(),
);
let mut mailer = SmtpClient::new_unencrypted_localhost()
.await
.unwrap()
.into_transport();
let result = mailer.connect_and_send(email).await;
if result.is_ok() {
println!("Email sent");
} else {
println!("Could not send email: {:?}", result);
}
assert!(result.is_ok());
});
}