diff --git a/app/courrier/page.tsx b/app/courrier/page.tsx index 4e73c8ef..fe1b15f6 100644 --- a/app/courrier/page.tsx +++ b/app/courrier/page.tsx @@ -272,41 +272,38 @@ function decodeMimeContent(content: string): string { function renderEmailContent(email: Email) { try { - // First try to parse the full email + // Parse the full email content const parsed = parseFullEmail(email.body); // If we have HTML content, display it if (parsed.html) { - const decodedHtml = decodeMIME(parsed.html, 'quoted-printable', 'utf-8'); return ( -