<?php
declare(strict_types=1);

namespace FreshCloud\Mail\MailClient;

final class InMemoryMailClient implements MailClient
{
    public function getMessage(string $userId, string $accountId, string $msgId): array
    {
        return [
            'subject' => 'Original: ' . $msgId,
            'from' => 'sender@example.com',
            'to' => ['user@example.com'],
            'cc' => [],
            'bcc' => [],
            'bodyHtml' => '<p>Original message body</p>',
            'bodyText' => 'Original message body',
            'date' => date('c'),
        ];
    }
}
