Files
piratepoet/mailpoet/lib/Mailer/Methods/MailerMethod.php
Rostislav Wolny b10c30a7b1 Add basic interface for MailerMethod
[MAILPOET-4115]
2022-04-11 16:54:38 +02:00

8 lines
146 B
PHP

<?php
namespace MailPoet\Mailer\Methods;
interface MailerMethod {
public function send($newsletter, $subscriber, $extraParams = []): array;
}