<?php
declare(strict_types=1);

namespace FreshCloud\Mail\Smtp;

use Ramsey\Uuid\Uuid;

final class InMemorySmtpClient implements SmtpClient
{
    public function send(
        string $from,
        array $to,
        string $subject,
        string $bodyHtml,
        string $bodyText,
        array $attachmentPaths
    ): string {
        return '<' . Uuid::uuid4()->toString() . '@freshcloud.local>';
    }
}
