1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:27:46 +00:00

Mail: Fetch and display date in e-mail list

Added a third column to show date of e-mail, as sent from the IMAP
server.
This commit is contained in:
Valtteri Koskivuori 2023-07-25 23:32:24 +03:00 committed by Andrew Kaster
parent f74380eecf
commit fc54bd03f9
3 changed files with 33 additions and 3 deletions

View file

@ -13,6 +13,7 @@
struct InboxEntry {
DeprecatedString from;
DeprecatedString subject;
DeprecatedString date;
};
class InboxModel final : public GUI::Model {
@ -20,6 +21,7 @@ public:
enum Column {
From,
Subject,
Date,
__Count
};