BookStack/app/App/MailNotification.php

45 lines
1.0 KiB
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\App;
use BookStack\Users\Models\User;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
abstract class MailNotification extends Notification implements ShouldQueue
{
use Queueable;
/**
* Get the mail representation of the notification.
*/
abstract public function toMail(User $notifiable): MailMessage;
/**
* 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.
*/
protected function newMailMessage(string $language = ''): MailMessage
{
$data = ['language' => $language ?: null];
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',
], $data);
}
2019-01-27 10:29:23 +00:00
}