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:
parent
f74380eecf
commit
fc54bd03f9
3 changed files with 33 additions and 3 deletions
|
@ -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
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue