feca-mailshots-plugin/feca_mailshots_plugin/src/Application/ImapAppender.php

12 lines
244 B
PHP

<?php
declare(strict_types=1);
namespace FecaMailshots\Application;
interface ImapAppender
{
/** @param array<string, mixed> $credentials */
public function appendSent(array $credentials, string $rawMime, string $attemptId): void;
}