BookStack/app/Notifications/MailNotification.php

39 lines
809 B
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class MailNotification extends Notification implements ShouldQueue
{
use Queueable;
/**
* Get the notification's channels.
*
2021-06-26 15:23:15 +00:00
* @param mixed $notifiable
*
* @return array|string
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* Create a new mail message.
2021-06-26 15:23:15 +00:00
*
* @return MailMessage
*/
protected function newMailMessage()
{
2021-06-26 15:23:15 +00:00
return (new MailMessage())->view([
'html' => 'vendor.notifications.email',
2021-06-26 15:23:15 +00:00
'text' => 'vendor.notifications.email-plain',
]);
}
2019-01-27 10:29:23 +00:00
}