PendingMail
in package
Table of Contents
Properties
- $bcc : array<string|int, mixed>
- The "bcc" recipients of the message.
- $cc : array<string|int, mixed>
- The "cc" recipients of the message.
- $mailer : Mailer
- The mailer instance.
- $to : array<string|int, mixed>
- The "to" recipients of the message.
Methods
- __construct() : mixed
- Create a new mailable mailer instance.
- bcc() : $this
- Set the recipients of the message.
- cc() : $this
- Set the recipients of the message.
- send() : mixed
- Send a new mailable message instance.
- to() : $this
- Set the recipients of the message.
- fill() : Mailable
- Populate the mailable with the addresses.
Properties
$bcc
The "bcc" recipients of the message.
protected
array<string|int, mixed>
$bcc
= []
$cc
The "cc" recipients of the message.
protected
array<string|int, mixed>
$cc
= []
$mailer
The mailer instance.
protected
Mailer
$mailer
$to
The "to" recipients of the message.
protected
array<string|int, mixed>
$to
= []
Methods
__construct()
Create a new mailable mailer instance.
public
__construct(Mailer $mailer) : mixed
Parameters
- $mailer : Mailer
bcc()
Set the recipients of the message.
public
bcc(mixed $address) : $this
Parameters
- $address : mixed
Return values
$thiscc()
Set the recipients of the message.
public
cc(mixed $address) : $this
Parameters
- $address : mixed
Return values
$thissend()
Send a new mailable message instance.
public
send(Mailable $mailable) : mixed
Parameters
- $mailable : Mailable
to()
Set the recipients of the message.
public
to(mixed $address) : $this
Parameters
- $address : mixed
Return values
$thisfill()
Populate the mailable with the addresses.
protected
fill(Mailable $mailable) : Mailable
Parameters
- $mailable : Mailable