<?php
declare(strict_types=1);

namespace FreshCloud\Mail\MailClient;

final readonly class MailMessage
{
    public function __construct(
        public string $id,
        public string $subject,
        public string $from,
        public array $to,
        public array $cc = [],
        public array $bcc = [],
        public ?\DateTimeImmutable $date = null,
        public string $body = '',
        public ?string $htmlBody = null,
        public string $folder = 'INBOX',
        public array $flags = [],
        public array $attachments = []
    ) {}
}