14 lines
312 B
PHP
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;
|
|
} |