mime change

This commit is contained in:
alma 2025-04-24 17:31:56 +02:00
parent 7343184e99
commit 35261769e2

View File

@ -8,7 +8,6 @@ import { Paperclip, X } from 'lucide-react';
import { Textarea } from '@/components/ui/textarea';
import { decodeComposeContent, encodeComposeContent } from '@/lib/compose-mime-decoder';
import { Email } from '@/app/courrier/page';
import mime from 'mime';
interface ComposeEmailProps {
showCompose: boolean;
@ -160,13 +159,10 @@ export default function ComposeEmail({
if (!composeBodyRef.current) return;
const content = composeBodyRef.current.innerHTML;
// Get the content type based on the content
const contentType = mime.getType('html') || 'text/html';
// Create MIME headers
const mimeHeaders = {
'MIME-Version': '1.0',
'Content-Type': `${contentType}; charset="utf-8"`,
'Content-Type': 'text/html; charset="utf-8"',
'Content-Transfer-Encoding': 'quoted-printable'
};