<?php
declare(strict_types=1);

namespace FreshCloud\Mail\Smtp;

interface SmtpClient
{
    public function send(
        string $from,
        array $to,
        string $subject,
        string $bodyHtml,
        string $bodyText,
        array $attachmentPaths
    ): string;
}
