mirror of
https://github.com/jlengrand/coolify.git
synced 2026-03-10 15:48:55 +00:00
19 lines
353 B
PHP
19 lines
353 B
PHP
<?php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class CustomEmailNotification extends Notification implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
public $backoff = [10, 20, 30, 40, 50];
|
|
|
|
public $tries = 5;
|
|
|
|
public $maxExceptions = 5;
|
|
}
|