В Laravel я отправляю уведомления по электронной почте пользователям из базы данных Oracle.Соединение с Oracle в порядке, но при попытке отправить уведомление по электронной почте пользователям я получаю следующую ошибку:
Вызов неопределенного метода stdClass :: routeNotificationFor () в my_project / vendor / laravel / framework / src/Illuminate/Notifications/Channels/MailChannel.php
Мой класс уведомлений выглядит следующим образом:
<?php
namespace App\Notifications;
use Illuminate\Notifications\Notifiable;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use App\User;
class Expired extends Notification
{
use Queueable;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct( )
{
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->line('The introduction to the notification.')
->action('Notification Action', url('/'))
->line('Thank you for using our application!');
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}
Вот как я отправляю уведомления:
<?php
$end = Carbon::now()->addDays(15)->format('Y-m-d h:m:s');
$users = DB::select("select email from user_ where val_to >= '$end ' group by email ");
Уведомление :: отправить ($ users, new Expired ($ users));