class PendingMail (View source)

Properties

protected Mailer $mailer

The mailer instance.

protected string $locale

The locale of the message.

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
__construct(Mailer $mailer)

Create a new mailable mailer instance.

$this
locale(string $locale)

Set the locale of the message.

$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
send(Mailable $mailable)

Send a new mailable message instance.

mixed
sendNow(Mailable $mailable) deprecated

Send a mailable message immediately.

mixed
queue(Mailable $mailable)

Push the given mailable onto the queue.

mixed
later(DateTimeInterface|DateInterval|int $delay, Mailable $mailable)

Deliver the queued message after the given delay.

fill(Mailable $mailable)

Populate the mailable with the addresses.

Details

void __construct(Mailer $mailer)

Create a new mailable mailer instance.

Parameters

Mailer $mailer

Return Value

void

$this locale(string $locale)

Set the locale of the message.

Parameters

string $locale

Return Value

$this

$this to(mixed $users)

Set the recipients of the message.

Parameters

mixed $users

Return Value

$this

$this cc(mixed $users)

Set the recipients of the message.

Parameters

mixed $users

Return Value

$this

$this bcc(mixed $users)

Set the recipients of the message.

Parameters

mixed $users

Return Value

$this

mixed send(Mailable $mailable)

Send a new mailable message instance.

Parameters

Mailable $mailable

Return Value

mixed

mixed sendNow(Mailable $mailable) deprecated

deprecated Use send() instead.

Send a mailable message immediately.

Parameters

Mailable $mailable

Return Value

mixed

mixed queue(Mailable $mailable)

Push the given mailable onto the queue.

Parameters

Mailable $mailable

Return Value

mixed

mixed later(DateTimeInterface|DateInterval|int $delay, Mailable $mailable)

Deliver the queued message after the given delay.

Parameters

DateTimeInterface|DateInterval|int $delay
Mailable $mailable

Return Value

mixed

protected Mailable fill(Mailable $mailable)

Populate the mailable with the addresses.

Parameters

Mailable $mailable

Return Value

Mailable