fix: "unknown" sender when importing PST #117

This commit is contained in:
rustmailer
2026-01-20 01:22:06 +08:00
parent 1f4e9f7b06
commit 9b49005522
+2 -1
View File
@@ -254,7 +254,8 @@ fn build_eml_base64(message: Rc<dyn Message>) -> Option<String> {
}
let from = extract_string_property(properties, 0x5D01)
.or_else(|| extract_string_property(properties, 0x5D02));
.or_else(|| extract_string_property(properties, 0x5D02))
.or_else(|| extract_string_property(properties, 0x0C1F));
if let Some(f) = from {
builder = builder.from(f);