Rust Requires Chilkat v11.0.0+
Rust
Read a POP3 Mailbox
Read a POP3 mailbox and display the FROM and SUBJECT header fields of each email.Chilkat Rust Downloads
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// The mailman object is used for receiving (POP3)
// and sending (SMTP) email.
let mailman = chilkat::MailMan::new();
// Set the POP3 server's hostname
mailman.set_mail_host("pop.example.com");
// Set the POP3 login/password.
mailman.set_pop_username("myLogin");
mailman.set_pop_password("myPassword");
// Copy the all email from the user's POP3 mailbox
// into a bundle object. The email remains on the server.
let bundle = chilkat::EmailBundle::new();
let keep_on_server = true;
let headers_only = false;
// Irrelevent because we are NOT downloading headers-only
let num_body_lines = 0;
if mailman.fetch_all(keep_on_server, headers_only, num_body_lines, &bundle).is_err() {
println!("{}", mailman.last_error_text());
return;
}
let mut i = 0;
let email = chilkat::Email::new();
while i < bundle.message_count() {
let _ = bundle.email_at(i, &email);
println!("From: {}", email.from());
println!("Subject: {}", email.subject());
i = i + 1;
}
let _ = mailman.pop3_end_session().is_ok();