diff --git a/app/courrier/page.tsx b/app/courrier/page.tsx index df70e659..f05d85d7 100644 --- a/app/courrier/page.tsx +++ b/app/courrier/page.tsx @@ -399,27 +399,27 @@ function getReplyBody(email: Email, type: 'reply' | 'reply-all' | 'forward' = 'r // Clean and sanitize HTML content content = cleanHtml(content); - // Format the reply/forward content with proper direction + // Format the reply/forward content let formattedContent = ''; if (type === 'forward') { formattedContent = ` -
Forwarded message from ${email.from}
-Date: ${new Date(email.date).toLocaleString()}
-Subject: ${email.subject}
-To: ${email.to}
- ${email.cc ? `Cc: ${email.cc}
` : ''} -Forwarded message from ${email.from}
+Date: ${new Date(email.date).toLocaleString()}
+Subject: ${email.subject}
+To: ${email.to}
+ ${email.cc ? `Cc: ${email.cc}
` : ''} +On ${new Date(email.date).toLocaleString()}, ${email.from} wrote:
-On ${new Date(email.date).toLocaleString()}, ${email.from} wrote:
+