Documentation

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 = []

$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
$this

cc()

Set the recipients of the message.

public cc(mixed $address) : $this
Parameters
$address : mixed
Return values
$this

to()

Set the recipients of the message.

public to(mixed $address) : $this
Parameters
$address : mixed
Return values
$this

        
On this page

Search results