Rust
Rust
Get a Cc Recipient's Name Only
See more Email Object Examples
Demonstrates the Chilkat Email.GetCcName method, which returns only the friendly-name part (not the address) of the Nth carbon-copy recipient. The index is zero-based. This example adds two Cc recipients and prints each one's display name.
Background: A recipient combines a display name with an address, such as
Jane Doe <jane@example.com>. GetCcName returns just the Jane Doe portion, which is handy for showing a friendly label in a UI. The name is optional free-form text, so it may be empty — when it is, fall back to the address from GetCcAddr.Chilkat Rust Downloads
// Demonstrates the GetCcName method, which returns only the friendly-name part (not the
// address) of the Nth carbon-copy recipient. The index is zero-based.
let email = chilkat::Email::new();
email.set_subject("GetCcName example");
let _ = email.add_cc("Joe Smith", "joe@example.com");
let _ = email.add_cc("Jane Doe", "jane@example.com");
let n = email.num_cc();
for i in 0..n {
println!("Cc {} name: {}", i, email.get_cc_name(i).unwrap_or_default());
}