MailServiceProvider::register()

void register() Register the service provider. Return Value void

MailServiceProvider::provides()

array provides() Get the services provided by the provider. Return Value array

MailServiceProvider::pathsToPublish()

static array pathsToPublish(string $provider = null, string $group = null) Get the paths to publish. Parameters string $provider string $group Return Value array

MailServiceProvider::isDeferred()

bool isDeferred() Determine if the provider is deferred. Return Value bool

MailServiceProvider::compiles()

static array compiles() Get a list of files that should be compiled for the package. Return Value array

MailServiceProvider::commands()

void commands(array|mixed $commands) Register the package's custom Artisan commands. Parameters array|mixed $commands Return Value void

MailServiceProvider

MailServiceProvider class MailServiceProvider extends ServiceProvider (View source) Methods void __construct(Application $app) Create a new service provider instance. from ServiceProvider static array pathsToPublish(string $provider = null, string $group = null) Get the paths to publish. from ServiceProvider void commands(array|mixed $commands) Register the package's custom Artisan commands. from ServiceProvider array provides() Get the services provided by the provider. ar

MailQueue::queue()

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

MailQueue::later()

mixed later(int $delay, string|array $view, array $data, Closure|string $callback, 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

MailQueue

MailQueue interface MailQueue (View source) Methods mixed queue(string|array $view, array $data, Closure|string $callback, string $queue = null) Queue a new e-mail message for sending. mixed later(int $delay, string|array $view, array $data, Closure|string $callback, string $queue = null) Queue a new e-mail message for sending after (n) seconds.