Rust
Rust
Send email using SMTP STARTTLS.
Send email using SMTP STARTTLS. With STARTTLS, the SMTP client connects to the SMTP server on port 25 (non-SSL) and then issues a STARTTLS command to convert the connection to a secure TLS channel.Chilkat Rust Downloads
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// The mailman object is used for sending and receiving email.
let mailman = chilkat::MailMan::new();
// Set the SMTP server.
mailman.set_smtp_host("smtp.mymailserver.com");
mailman.set_smtp_username("myLogin");
mailman.set_smtp_password("myPassword");
mailman.set_start_tls(true);
// Create a new email object
let email = chilkat::Email::new();
email.set_subject("This is a test");
email.set_body("This is a test");
email.set_from("Chilkat Support <support@chilkatsoft.com>");
let _ = email.add_to("Chilkat Admin", "admin@chilkatsoft.com").is_ok();
if mailman.send_email(&email).is_err() {
println!("{}", mailman.last_error_text());
return;
}
if mailman.close_smtp_connection().is_err() {
println!("Connection to SMTP server not closed cleanly.");
}
println!("Mail Sent!");