Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace Illuminate\Support\Facades;use Illuminate\Support\Testing\Fakes\MailFake;/*** @method static \Illuminate\Contracts\Mail\Mailer mailer(string|null $name = null)* @method static \Illuminate\Mail\Mailer driver(string|null $driver = null)* @method static \Symfony\Component\Mailer\Transport\TransportInterface createSymfonyTransport(array $config)* @method static string getDefaultDriver()* @method static void setDefaultDriver(string $name)* @method static void purge(string|null $name = null)* @method static \Illuminate\Mail\MailManager extend(string $driver, \Closure $callback)* @method static \Illuminate\Contracts\Foundation\Application getApplication()* @method static \Illuminate\Mail\MailManager setApplication(\Illuminate\Contracts\Foundation\Application $app)* @method static \Illuminate\Mail\MailManager forgetMailers()* @method static void alwaysFrom(string $address, string|null $name = null)* @method static void alwaysReplyTo(string $address, string|null $name = null)* @method static void alwaysReturnPath(string $address)* @method static void alwaysTo(string $address, string|null $name = null)* @method static \Illuminate\Mail\PendingMail to(mixed $users)* @method static \Illuminate\Mail\PendingMail cc(mixed $users)* @method static \Illuminate\Mail\PendingMail bcc(mixed $users)* @method static \Illuminate\Mail\SentMessage|null html(string $html, mixed $callback)* @method static \Illuminate\Mail\SentMessage|null raw(string $text, mixed $callback)* @method static \Illuminate\Mail\SentMessage|null plain(string $view, array $data, mixed $callback)* @method static string render(string|array $view, array $data = [])* @method static \Illuminate\Mail\SentMessage|null send(\Illuminate\Contracts\Mail\Mailable|string|array $view, array $data = [], \Closure|string|null $callback = null)* @method static mixed queue(\Illuminate\Contracts\Mail\Mailable|string|array $view, string|null $queue = null)* @method static mixed onQueue(string $queue, \Illuminate\Contracts\Mail\Mailable $view)* @method static mixed queueOn(string $queue, \Illuminate\Contracts\Mail\Mailable $view)* @method static mixed later(\DateTimeInterface|\DateInterval|int $delay, \Illuminate\Contracts\Mail\Mailable $view, string|null $queue = null)* @method static mixed laterOn(string $queue, \DateTimeInterface|\DateInterval|int $delay, \Illuminate\Contracts\Mail\Mailable $view)* @method static \Symfony\Component\Mailer\Transport\TransportInterface getSymfonyTransport()* @method static \Illuminate\Contracts\View\Factory getViewFactory()* @method static void setSymfonyTransport(\Symfony\Component\Mailer\Transport\TransportInterface $transport)* @method static \Illuminate\Mail\Mailer setQueue(\Illuminate\Contracts\Queue\Factory $queue)* @method static void macro(string $name, object|callable $macro)* @method static void mixin(object $mixin, bool $replace = true)* @method static bool hasMacro(string $name)* @method static void flushMacros()* @method static void assertSent(string|\Closure $mailable, callable|int|null $callback = null)* @method static void assertNotOutgoing(string|\Closure $mailable, callable|null $callback = null)* @method static void assertNotSent(string|\Closure $mailable, callable|null $callback = null)* @method static void assertNothingOutgoing()* @method static void assertNothingSent()* @method static void assertQueued(string|\Closure $mailable, callable|int|null $callback = null)* @method static void assertNotQueued(string|\Closure $mailable, callable|null $callback = null)* @method static void assertNothingQueued()* @method static \Illuminate\Support\Collection sent(string|\Closure $mailable, callable|null $callback = null)* @method static bool hasSent(string $mailable)* @method static \Illuminate\Support\Collection queued(string|\Closure $mailable, callable|null $callback = null)* @method static bool hasQueued(string $mailable)* @method static array failures()** @see \Illuminate\Mail\MailManager* @see \Illuminate\Support\Testing\Fakes\MailFake*/class Mail extends Facade{/*** Replace the bound instance with a fake.** @return \Illuminate\Support\Testing\Fakes\MailFake*/public static function fake(){static::swap($fake = new MailFake);return $fake;}/*** Get the registered name of the component.** @return string*/protected static function getFacadeAccessor(){return 'mail.manager';}}