PendingMail
class PendingMail
Properties
protected array | $mailer | The mailer instance. |
|
protected array | $to | The "to" recipients of the message. |
|
protected array | $cc | The "cc" recipients of the message. |
|
protected array | $bcc | The "bcc" recipients of the message. |
Methods
void
$this
to(mixed $users)
Set the recipients of the message.
$this
cc(mixed $users)
Set the recipients of the message.
$this
bcc(mixed $users)
Set the recipients of the message.
mixed
Details
at line 43
void
__construct(Mailer $mailer)
Create a new mailable mailer instance.
at line 54
$this
to(mixed $users)
Set the recipients of the message.
at line 67
$this
cc(mixed $users)
Set the recipients of the message.
at line 80
$this
bcc(mixed $users)
Set the recipients of the message.
at line 93
mixed
send(Mailable $mailable)
Send a new mailable message instance.
at line 108
mixed
sendNow(Mailable $mailable)
Send a mailable message immediately.
at line 119
mixed
queue(Mailable $mailable)
Push the given mailable onto the queue.