the-bugs/src/Email/MailerInterface.php
2022-02-25 16:41:49 +00:00

14 lines
312 B
PHP

<?php
namespace TheBugs\Email;
interface MailerInterface
{
public function send(string $subject, string $message, bool $html = true) : bool;
public function setFrom($from) : self;
public function attach(\Swift_Attachment $attachment) : self;
public function setTo($to) : self;
}