PHP code example of malcolmknott / emailtester

1. Go to this page and download the library: Download malcolmknott/emailtester 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/ */

    

malcolmknott / emailtester example snippets


'providers' => [
    Malcolmknott\Emailtester\EmailtesterServiceProvider::class,
];

$schedule->command('send-email [email protected] 1')->twiceDaily(9, 21);
bash
php artisan vendor:publish --provider="Malcolmknott\Emailtester\EmailtesterServiceProvider" --tag="config"
bash
php artisan send-email [email protected] 1
bash
php artisan vendor:publish --provider="Malcolmknott\Emailtester\EmailtesterServiceProvider" --tag="views"