feat: Search results display the account email and mailbox name. #39

This commit is contained in:
rustmailer
2025-12-28 13:20:21 +08:00
parent 1f57f372d3
commit a02bb65ca0
4 changed files with 24 additions and 5 deletions
+4
View File
@@ -121,6 +121,8 @@ pub fn extract_envelope(fetch: &Fetch, account_id: u64, mailbox_id: u64) -> Bich
thread_id,
attachments,
tags: None,
account_email: None,
mailbox_name: None,
};
Ok(envelope)
}
@@ -214,6 +216,8 @@ pub fn extract_envelope_from_eml(
thread_id,
attachments,
tags: None,
account_email: None,
mailbox_name: None,
};
Ok(envelope)
}