- Added setBCC and setCC methods to interface.
This commit is contained in:
parent
fe6fdd3987
commit
1f61c964bc
|
@ -30,5 +30,5 @@ class EmailConfiguration
|
||||||
{
|
{
|
||||||
$this->type = $type;
|
$this->type = $type;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -11,4 +11,8 @@ interface MailerInterface
|
||||||
public function attach(mixed $attachment) : self;
|
public function attach(mixed $attachment) : self;
|
||||||
|
|
||||||
public function setTo(string|\Stringable|array $to) : 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;
|
||||||
}
|
}
|
Loading…
Reference in New Issue