Index: src/main.rs ================================================================== --- src/main.rs +++ src/main.rs @@ -97,11 +97,11 @@ } if let Some(from) = mail.from() { reply.push(format!("**From:** `{:?}`", address_into_iter(from).collect::>().join(", ")).into()); } if let Some(sender) = mail.sender() { - reply.push(format!("**Sender:** `{:?}`", sender).into()); + reply.push(format!("**Sender:** `{:?}`", address_into_iter(sender).collect::>().join(", ")).into()); } reply.push("".into()); let header_size = reply.join("\n").len() + 1; let html_parts = mail.html_body_count();