fix: enhance draft editing by fetching full email content when necessary #60

This commit is contained in:
Linus Rath
2026-03-25 10:36:47 +01:00
parent 136686f230
commit 0174051f3e
+14 -2
View File
@@ -496,9 +496,21 @@ export default function Home() {
if (isMobile) setActiveView('viewer');
};
const handleEditDraft = (email?: Email) => {
const draft = email || selectedEmail;
const handleEditDraft = async (email?: Email) => {
if (!client) return;
let draft = email || selectedEmail;
if (!draft) return;
// The email list only fetches limited properties (no bodyValues/htmlBody/bcc).
// Fetch the full email so the composer gets all draft content.
if (!draft.bodyValues) {
const mailbox = mailboxes.find(mb => mb.id === selectedMailbox);
const accountId = mailbox?.isShared ? mailbox.accountId : undefined;
const fullDraft = await client.getEmail(draft.id, accountId);
if (!fullDraft) return;
draft = fullDraft;
}
const bodyText = draft.bodyValues
? Object.values(draft.bodyValues).map(v => v.value).join('\n')
: '';