PHP code example of casperboone / laravel-expiring-email

1. Go to this page and download the library: Download casperboone/laravel-expiring-email library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

casperboone / laravel-expiring-email example snippets


// app/Console/Kernel.php

protected function schedule(Schedule $schedule)
{
    $schedule->command(CleanExpiredEmails::class)->daily();
}
bash
php artisan vendor:publish --provider="CasperBoone\LaravelExpiringEmail\LaravelExpiringEmailServiceProvider" --tag="expiring-email-migrations"
php artisan migrate
bash
php artisan vendor:publish --provider="CasperBoone\LaravelExpiringEmail\LaravelExpiringEmailServiceProvider" --tag="expiring-email-config"
bash
php artisan vendor:publish --provider="CasperBoone\LaravelExpiringEmail\LaravelExpiringEmailServiceProvider" --tag="expiring-email-views"
diff
 public function via($notifiable): array
 {
-    return ['mail'];
+    return [ExpiringEmailChannel::class];
 }