Mailable::subject()

$this subject(string $subject) Set the subject of the message. Parameters string $subject Return Value $this

Mailable::send()

void send(Mailer $mailer) Send the message using the given mailer. Parameters Mailer $mailer Return Value void

Mailable::send()

void send(Mailer $mailer) Send the message using the given mailer. Parameters Mailer $mailer Return Value void

Mailable::replyTo()

$this replyTo(object|array|string $address, string|null $name = null) Set the "reply to" address of the message. Parameters object|array|string $address string|null $name Return Value $this

Mailable::queue()

mixed queue(Factory $queue) Queue the message for sending. Parameters Factory $queue Return Value mixed

Mailable::queue()

mixed queue(Factory $queue) Queue the given message. Parameters Factory $queue Return Value mixed

Mailable::priority()

$this priority(int $level = 3) Set the priority of this message. The value is an integer where 1 is the highest priority and 5 is the lowest. Parameters int $level Return Value $this

Mailable::later()

mixed later(DateTime|int $delay, Factory $queue) Deliver the queued message after the given delay. Parameters DateTime|int $delay Factory $queue Return Value mixed

Mailable::later()

mixed later(DateTime|int $delay, Factory $queue) Deliver the queued message after the given delay. Parameters DateTime|int $delay Factory $queue Return Value mixed

Mailable::from()

$this from(object|array|string $address, string|null $name = null) Set the sender of the message. Parameters object|array|string $address string|null $name Return Value $this