e99c22b007
* Emails not sending #795 #722 * Fix for news items not being sent; refactor some events; check for opt-in #722 * Formatting * Remove extra parameter
47 lines
871 B
PHP
47 lines
871 B
PHP
<?php
|
|
|
|
namespace App\Notifications\Messages;
|
|
|
|
use App\Contracts\Notification;
|
|
use App\Models\User;
|
|
use App\Notifications\Channels\MailChannel;
|
|
|
|
class UserRejected extends Notification
|
|
{
|
|
use MailChannel;
|
|
|
|
public $channels = ['mail'];
|
|
|
|
private $user;
|
|
|
|
/**
|
|
* @param \App\Models\User $user
|
|
*/
|
|
public function __construct(User $user)
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->user = $user;
|
|
|
|
$this->setMailable(
|
|
'Your registration has been denied',
|
|
'notifications.mail.user.rejected',
|
|
['user' => $this->user]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the array representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
*
|
|
* @return array
|
|
*/
|
|
public function toArray($notifiable)
|
|
{
|
|
return [
|
|
'user_id' => $this->user->id,
|
|
];
|
|
}
|
|
}
|