Files
phpvms/app/Notifications/Messages/AdminUserRegistered.php
Nabeel S e99c22b007 Notifications fixes (#804)
* Emails not sending #795 #722

* Fix for news items not being sent; refactor some events; check for opt-in #722

* Formatting

* Remove extra parameter
2020-09-03 12:50:42 -04:00

41 lines
777 B
PHP

<?php
namespace App\Notifications\Messages;
use App\Contracts\Notification;
use App\Models\User;
use App\Notifications\Channels\MailChannel;
class AdminUserRegistered extends Notification
{
use MailChannel;
public $channels = ['mail'];
private $user;
/**
* Create a new notification instance.
*
* @param \App\Models\User $user
*/
public function __construct(User $user)
{
parent::__construct();
$this->user = $user;
$this->setMailable(
'A new user registered',
'notifications.mail.admin.user.registered',
['user' => $user]
);
}
public function toArray($notifiable)
{
return [
'user_id' => $this->user->id,
];
}
}