opsdash-app/opsdash/tests/php/stubs/OCP/Mail/IMailer.php
2026-05-14 13:48:45 +07:00

11 lines
201 B
PHP

<?php
declare(strict_types=1);
namespace OCP\Mail;
interface IMailer {
public function createEMailTemplate(string $templateId);
public function createMessage();
public function send($message);
}