//! # envelope — what the servers read
//!
//! During an SMTP conversation, the sender announces `MAIL FROM:<…>` (where
//! bounces go) and `RCPT TO:<…>` (where to deliver). That pair is the
//! **envelope**. It is *not* the `From:`/`To:` your mail client shows — those
//! live inside the [message](crate::message) and may legitimately differ
//! (that difference is how BCC and mailing lists work).
use crateEmailAddress;
/// The SMTP envelope: return path plus recipients.