- Added setBCC and setCC methods to interface.

This commit is contained in:
Dave Mc Nicoll 2024-06-03 21:53:31 -04:00
parent fe6fdd3987
commit 1f61c964bc
2 changed files with 5 additions and 1 deletions

View File

@ -30,5 +30,5 @@ class EmailConfiguration
{
$this->type = $type;
}
}

View File

@ -11,4 +11,8 @@ interface MailerInterface
public function attach(mixed $attachment) : self;
public function setTo(string|\Stringable|array $to) : self;
public function setBCC(string|\Stringable|array $bcc) : self;
public function setCC(string|\Stringable|array $cc) : self;
}