Sample code for 30+ languages & platforms
Rust

Get an Attached Message as an Email Object

See more Email Object Examples

Demonstrates the Chilkat Email.GetAttachedEmail method, which copies the Nth embedded message/rfc822 MIME part into another Email object. The index is zero-based (valid values run from 0 through NumAttachedMessages - 1). This example attaches an email and then extracts it back into its own object.

Background: When a message forwards another email as an attachment, that nested message is a complete email in its own right. GetAttachedEmail turns it back into a fully navigable Email object so you can read its subject, sender, body, and even its own attachments — essential for processing forwarded mail, or for tools that unpack reported spam/phishing to examine the original.

Chilkat Rust Downloads

Rust

// Demonstrates the GetAttachedEmail method, which copies the Nth embedded message/rfc822
// MIME part into another Email object.  The index is zero-based.

// Build an inner email and attach it to an outer email.
let inner_email = chilkat::Email::new();
inner_email.set_subject("Embedded message");
inner_email.set_from("alice@example.com");
inner_email.set_body("This is the embedded message.");

let email = chilkat::Email::new();
email.set_subject("Has an attached message");
if email.attach_email(&inner_email).is_err() {
    println!("{}", email.last_error_text());
    return;
}

// Copy the first embedded message (index 0) into its own Email object.
let attached = chilkat::Email::new();
if email.get_attached_email(0, &attached).is_err() {
    println!("{}", email.last_error_text());
    return;
}

println!("Attached email subject: {}", attached.subject());
println!("Attached email from: {}", attached.from());