PHP code example of huserg / laravel-expiration-mailer

1. Go to this page and download the library: Download huserg/laravel-expiration-mailer 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/ */

    

huserg / laravel-expiration-mailer example snippets


return [
# for the moment it's empty
];

use Huserg\LaravelExpirationMailer\Http\Controllers\ExpirationMailerController;

Route::group(['prefix' => 'expirations'], function () {
    Route::get('', [ExpirationController::class, 'index'])->name('lem.expirations.index');
    Route::post('', [ExpirationController::class, 'store'])->name('lem.expirations.store');
    Route::post('{id}/force-send', [ExpirationController::class, 'forceSend'])->name('lem.expirations.force-send');
});

protected function schedule(Schedule $schedule): void
{
    $schedule->command('expiration-mailer:send-email')->daily(); # or any other schedule
}
bash
php artisan vendor:publish --tag="laravel-expiration-mailer-migrations"
php artisan migrate
bash
php artisan vendor:publish --tag="laravel-expiration-mailer-config"
bash
php artisan vendor:publish --tag="laravel-expiration-mailer-views"