courrier preview

This commit is contained in:
alma 2025-05-01 11:48:29 +02:00
parent 0251b08113
commit fba2b1213f

View File

@ -346,112 +346,51 @@ export function formatReplyEmail(originalEmail: EmailMessage | LegacyEmailMessag
// Get header information
const { fromStr, dateStr, subject } = getFormattedHeaderInfo(originalEmail);
// Extract content using centralized utility - get simpler text version when possible
const { text: originalTextContent, html: originalHtmlContent } = extractEmailContent(originalEmail);
// Simpler approach - prefer text content when available for clean replies
let replyBody = '';
let textReply = '';
// Extract just the text content for a clean reply
let emailText = '';
// Create a header that works in both HTML and plain text
const headerHtml = `<div style="margin-top: 20px; margin-bottom: 10px; color: #666;">On ${dateStr}, ${fromStr} wrote:</div>`;
// Use extracted text content when available for cleaner replies
if (originalTextContent) {
// Use text content with proper line breaks - limit to a reasonable size
const maxChars = 1500;
const truncatedText = originalTextContent.length > maxChars
? originalTextContent.slice(0, maxChars) + '... [message truncated]'
: originalTextContent;
replyBody = `
${headerHtml}
<blockquote style="margin: 10px 0; padding-left: 10px; border-left: 2px solid #ddd; color: #505050;">
${truncatedText.replace(/\n/g, '<br>')}
</blockquote>
`;
textReply = `
On ${dateStr}, ${fromStr} wrote:
> ${truncatedText.split('\n').join('\n> ')}
`;
// Try to get text directly from content.text first
if (originalEmail.content && typeof originalEmail.content === 'object' && originalEmail.content.text) {
emailText = originalEmail.content.text;
}
// If no text, try to sanitize and simplify HTML
else if (originalHtmlContent) {
try {
// Sanitize the original HTML to remove problematic elements and simplify
const sanitizedHtml = sanitizeHtml(originalHtmlContent);
// Extract the text content from the sanitized HTML for the plaintext version
const tempDiv = document.createElement('div');
tempDiv.innerHTML = sanitizedHtml;
const extractedText = tempDiv.textContent || tempDiv.innerText || '';
// Limit to a reasonable size
const maxChars = 1500;
const truncatedText = extractedText.length > maxChars
? extractedText.slice(0, maxChars) + '... [message truncated]'
: extractedText;
replyBody = `
${headerHtml}
<blockquote style="margin: 10px 0; padding-left: 10px; border-left: 2px solid #ddd; color: #505050;">
${truncatedText.replace(/\n/g, '<br>')}
</blockquote>
`;
textReply = `
// Otherwise, fall back to extractEmailContent which tries various formats
else {
const { text } = extractEmailContent(originalEmail);
emailText = text;
}
// Create simple reply with header
const cleanReplyHeader = `<div style="margin: 20px 0 10px 0; color: #666; border-bottom: 1px solid #eee; padding-bottom: 10px;">On ${dateStr}, ${fromStr} wrote:</div>`;
// Limit text to reasonable size and format as simple HTML
const maxChars = 1000;
const truncatedText = emailText.length > maxChars
? emailText.slice(0, maxChars) + '... [message truncated]'
: emailText;
const cleanHtml = `
${cleanReplyHeader}
<blockquote style="margin: 0; padding-left: 10px; border-left: 2px solid #ddd; color: #505050;">
<p>${truncatedText.replace(/\n/g, '</p><p>')}</p>
</blockquote>
`;
// Plain text version
const plainText = `
On ${dateStr}, ${fromStr} wrote:
> ${truncatedText.split('\n').join('\n> ')}
`;
} catch (error) {
console.error('Error processing HTML for reply:', error);
// Fallback to a basic template if everything fails
replyBody = `
${headerHtml}
<blockquote style="margin: 10px 0; padding-left: 10px; border-left: 2px solid #ddd; color: #505050;">
[Original message content could not be processed]
</blockquote>
`;
textReply = `
On ${dateStr}, ${fromStr} wrote:
> [Original message content could not be processed]
`;
}
} else {
// Empty or unrecognized content
replyBody = `
${headerHtml}
<blockquote style="margin: 10px 0; padding-left: 10px; border-left: 2px solid #ddd; color: #505050;">
[Original message content not available]
</blockquote>
`;
textReply = `
On ${dateStr}, ${fromStr} wrote:
> [Original message content not available]
`;
}
// Process the content with proper direction
const processed = processContentWithDirection(replyBody);
// Extract any inline images as attachments
const inlineImages = extractInlineImages(originalHtmlContent);
`;
return {
to,
cc,
subject: subject.startsWith('Re:') ? subject : `Re: ${subject}`,
content: {
text: textReply.trim(),
html: processed.html,
text: plainText.trim(),
html: cleanHtml,
isHtml: true,
direction: processed.direction
},
// Include inline images as attachments if any were found
attachments: inlineImages.length > 0 ? inlineImages : undefined
direction: 'ltr'
}
};
}
@ -475,17 +414,23 @@ export function formatForwardedEmail(originalEmail: EmailMessage | LegacyEmailMe
// Get header information
const { fromStr, toStr, ccStr, dateStr, subject } = getFormattedHeaderInfo(originalEmail);
// Extract content using centralized utility - get simpler text version when possible
const { text: originalTextContent, html: originalHtmlContent } = extractEmailContent(originalEmail);
// Simpler approach - prefer text content when available for clean forwards
let forwardBody = '';
let textForward = '';
// Extract just the text content for a clean forward
let emailText = '';
// Create metadata header that works in both HTML and plain text
const headerHtml = `
<div style="margin-top: 20px; color: #666;">
<div>---------- Forwarded message ---------</div>
// Try to get text directly from content.text first
if (originalEmail.content && typeof originalEmail.content === 'object' && originalEmail.content.text) {
emailText = originalEmail.content.text;
}
// Otherwise, fall back to extractEmailContent which tries various formats
else {
const { text } = extractEmailContent(originalEmail);
emailText = text;
}
// Create simple forward with metadata header
const cleanForwardHeader = `
<div style="margin: 20px 0 10px 0; color: #666; border-bottom: 1px solid #eee; padding-bottom: 10px;">
<div><strong>---------- Forwarded message ---------</strong></div>
<div><strong>From:</strong> ${fromStr}</div>
<div><strong>Date:</strong> ${dateStr}</div>
<div><strong>Subject:</strong> ${subject || ''}</div>
@ -494,22 +439,21 @@ export function formatForwardedEmail(originalEmail: EmailMessage | LegacyEmailMe
</div>
`;
// Use extracted text content when available for cleaner forwards
if (originalTextContent) {
// Use text content with proper line breaks - limit to a reasonable size
const maxChars = 2000;
const truncatedText = originalTextContent.length > maxChars
? originalTextContent.slice(0, maxChars) + '... [message truncated]'
: originalTextContent;
forwardBody = `
${headerHtml}
<blockquote style="margin-top: 10px; padding-left: 10px; border-left: 2px solid #ddd; color: #505050;">
${truncatedText.replace(/\n/g, '<br>')}
</blockquote>
`;
textForward = `
// Limit text to reasonable size and format as simple HTML
const maxChars = 1500;
const truncatedText = emailText.length > maxChars
? emailText.slice(0, maxChars) + '... [message truncated]'
: emailText;
const cleanHtml = `
${cleanForwardHeader}
<blockquote style="margin: 0; padding-left: 10px; border-left: 2px solid #ddd; color: #505050;">
<p>${truncatedText.replace(/\n/g, '</p><p>')}</p>
</blockquote>
`;
// Plain text version
const plainText = `
---------- Forwarded message ---------
From: ${fromStr}
Date: ${dateStr}
@ -518,114 +462,26 @@ To: ${toStr}
${ccStr ? `Cc: ${ccStr}\n` : ''}
${truncatedText}
`;
}
// If no text, try to sanitize and simplify HTML
else if (originalHtmlContent) {
try {
// Sanitize the original HTML to remove problematic elements and simplify
const sanitizedHtml = sanitizeHtml(originalHtmlContent);
// Extract the text content from the sanitized HTML for the plaintext version
const tempDiv = document.createElement('div');
tempDiv.innerHTML = sanitizedHtml;
const extractedText = tempDiv.textContent || tempDiv.innerText || '';
// Limit to a reasonable size
const maxChars = 2000;
const truncatedText = extractedText.length > maxChars
? extractedText.slice(0, maxChars) + '... [message truncated]'
: extractedText;
forwardBody = `
${headerHtml}
<blockquote style="margin-top: 10px; padding-left: 10px; border-left: 2px solid #ddd; color: #505050;">
${truncatedText.replace(/\n/g, '<br>')}
</blockquote>
`;
textForward = `
---------- Forwarded message ---------
From: ${fromStr}
Date: ${dateStr}
Subject: ${subject || ''}
To: ${toStr}
${ccStr ? `Cc: ${ccStr}\n` : ''}
`;
${truncatedText}
`;
} catch (error) {
console.error('Error processing HTML for forward:', error);
// Fallback to a basic template if everything fails
forwardBody = `
${headerHtml}
<blockquote style="margin-top: 10px; padding-left: 10px; border-left: 2px solid #ddd; color: #505050;">
[Original message content could not be processed]
</blockquote>
`;
textForward = `
---------- Forwarded message ---------
From: ${fromStr}
Date: ${dateStr}
Subject: ${subject || ''}
To: ${toStr}
${ccStr ? `Cc: ${ccStr}\n` : ''}
[Original message content could not be processed]
`;
}
} else {
// Empty or unrecognized content
forwardBody = `
${headerHtml}
<blockquote style="margin-top: 10px; padding-left: 10px; border-left: 2px solid #ddd; color: #505050;">
[Original message content not available]
</blockquote>
`;
textForward = `
---------- Forwarded message ---------
From: ${fromStr}
Date: ${dateStr}
Subject: ${subject || ''}
To: ${toStr}
${ccStr ? `Cc: ${ccStr}\n` : ''}
[Original message content not available]
`;
}
// Process the content with proper direction
const processed = processContentWithDirection(forwardBody);
// Check if the original email has attachments
const originalAttachments = originalEmail.attachments || [];
// Extract any inline images and add to attachments
const inlineImages = extractInlineImages(originalHtmlContent);
// Combine original attachments and inline images
const combinedAttachments = [
...originalAttachments.map(att => ({
filename: att.filename || 'attachment',
contentType: att.contentType || 'application/octet-stream',
content: att.content
})),
...inlineImages
];
// Check if original has attachments
const attachments = originalEmail.attachments || [];
return {
to: '',
subject: subject.startsWith('Fwd:') ? subject : `Fwd: ${subject}`,
content: {
text: textForward.trim(),
html: processed.html,
text: plainText.trim(),
html: cleanHtml,
isHtml: true,
direction: 'ltr'
},
// Include attachments if any were found
attachments: combinedAttachments.length > 0 ? combinedAttachments : undefined
// Only include attachments if they exist
attachments: attachments.length > 0 ? attachments.map(att => ({
filename: att.filename || 'attachment',
contentType: att.contentType || 'application/octet-stream',
content: att.content
})) : undefined
};
}