Mailer::onQueue()

mixed onQueue(string $queue, string|array $view, array $data, Closure|string $callback) Queue a new e-mail message for sending on the given queue. Parameters string $queue string|array $view array $data Closure|string $callback Return Value mixed

Mailer::laterOn()

mixed laterOn(string $queue, int $delay, string|array $view, array $data, Closure|string $callback) Queue a new e-mail message for sending after (n) seconds on the given queue. Parameters string $queue int $delay string|array $view array $data Closure|string $callback Return Value mixed

Mailer::later()

mixed later(int $delay, string|array $view, array $data = array(), Closure|string $callback = null, string $queue = null) Queue a new e-mail message for sending after (n) seconds. Parameters int $delay string|array $view array $data Closure|string $callback string $queue Return Value mixed

Mailer::getViewFactory()

Factory getViewFactory() Get the view factory instance. Return Value Factory

Mailer::getSwiftMailer()

Swift_Mailer getSwiftMailer() Get the Swift Mailer instance. Return Value Swift_Mailer

Mailer::failures()

array failures() Get the array of failed recipients. Return Value array

Mailer::failures()

array failures() Get the array of failed recipients. Return Value array

Mailer::bcc()

MailableMailer bcc(mixed $users) Begin the process of mailing a mailable class instance. Parameters mixed $users Return Value MailableMailer

Mailer::alwaysTo()

void alwaysTo(string $address, string|null $name = null) Set the global to address and name. Parameters string $address string|null $name Return Value void

Mailer::alwaysFrom()

void alwaysFrom(string $address, string|null $name = null) Set the global from address and name. Parameters string $address string|null $name Return Value void